Uses of Class
org.glassfish.jersey.server.ChunkedOutput
-
Packages that use ChunkedOutput Package Description org.glassfish.jersey.server Jersey server-side classes. -
-
Uses of ChunkedOutput in org.glassfish.jersey.server
Fields in org.glassfish.jersey.server with type parameters of type ChunkedOutput Modifier and Type Field Description private java.util.concurrent.ConcurrentLinkedQueue<ChunkedOutput<T>>
Broadcaster. chunkedOutputs
Methods in org.glassfish.jersey.server with type parameters of type ChunkedOutput Modifier and Type Method Description <OUT extends ChunkedOutput<T>>
booleanBroadcaster. add(OUT chunkedOutput)
RegisterChunkedOutput
to thisBroadcaster
instance.<OUT extends ChunkedOutput<T>>
booleanBroadcaster. remove(OUT chunkedOutput)
Un-registerChunkedOutput
from thisBroadcaster
instance.Methods in org.glassfish.jersey.server with parameters of type ChunkedOutput Modifier and Type Method Description private void
Broadcaster. fireOnClose(ChunkedOutput<T> chunkedOutput)
private void
Broadcaster. fireOnException(ChunkedOutput<T> chunkedOutput, java.lang.Exception exception)
long
ChunkedResponseWriter. getSize(ChunkedOutput<?> chunkedOutput, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
void
Broadcaster. onClose(ChunkedOutput<T> chunkedOutput)
Called when the chunkedOutput has been closed (either by client closing the connection or by callingclose()
on the server side.void
BroadcasterListener. onClose(ChunkedOutput<T> chunkedOutput)
Called when the chunkedOutput has been closed (either by client closing the connection or by callingclose()
on the server side.void
Broadcaster. onException(ChunkedOutput<T> chunkedOutput, java.lang.Exception exception)
Called when exception was thrown by a given chunked response when trying to write to it or close it.void
BroadcasterListener. onException(ChunkedOutput<T> chunkedOutput, java.lang.Exception exception)
Called when exception was thrown by a given chunked response when trying to write to it or close it.void
ChunkedResponseWriter. writeTo(ChunkedOutput<?> chunkedOutput, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, java.io.OutputStream entityStream)
Method parameters in org.glassfish.jersey.server with type arguments of type ChunkedOutput Modifier and Type Method Description private void
Broadcaster. forEachOutput(Broadcaster.Task<ChunkedOutput<T>> t)
-