Class StreamingOutputProvider

  • All Implemented Interfaces:
    jakarta.ws.rs.ext.MessageBodyWriter<jakarta.ws.rs.core.StreamingOutput>

    @Produces({"application/octet-stream","*/*"})
    @Singleton
    public final class StreamingOutputProvider
    extends Object
    implements jakarta.ws.rs.ext.MessageBodyWriter<jakarta.ws.rs.core.StreamingOutput>
    Message body writer that supports streaming output marshalling.
    Author:
    Paul Sandoz
    • Constructor Detail

      • StreamingOutputProvider

        public StreamingOutputProvider()
    • Method Detail

      • isWriteable

        public boolean isWriteable​(Class<?> t,
                                   Type gt,
                                   Annotation[] as,
                                   jakarta.ws.rs.core.MediaType mediaType)
        Specified by:
        isWriteable in interface jakarta.ws.rs.ext.MessageBodyWriter<jakarta.ws.rs.core.StreamingOutput>
      • getSize

        public long getSize​(jakarta.ws.rs.core.StreamingOutput o,
                            Class<?> type,
                            Type genericType,
                            Annotation[] annotations,
                            jakarta.ws.rs.core.MediaType mediaType)
        Specified by:
        getSize in interface jakarta.ws.rs.ext.MessageBodyWriter<jakarta.ws.rs.core.StreamingOutput>
      • writeTo

        public void writeTo​(jakarta.ws.rs.core.StreamingOutput o,
                            Class<?> t,
                            Type gt,
                            Annotation[] as,
                            jakarta.ws.rs.core.MediaType mediaType,
                            jakarta.ws.rs.core.MultivaluedMap<String,​Object> httpHeaders,
                            OutputStream entity)
                     throws IOException
        Specified by:
        writeTo in interface jakarta.ws.rs.ext.MessageBodyWriter<jakarta.ws.rs.core.StreamingOutput>
        Throws:
        IOException