Uses of Interface
org.glassfish.jersey.server.AsyncContext
-
Packages that use AsyncContext Package Description org.glassfish.jersey.server Jersey server-side classes.org.glassfish.jersey.server.internal.inject Jersey server-side JAX-RS injection support classes.org.glassfish.jersey.server.internal.process Jersey server-side internal classes related to request and response processing. -
-
Uses of AsyncContext in org.glassfish.jersey.server
Classes in org.glassfish.jersey.server that implement AsyncContext Modifier and Type Class Description private static class
ServerRuntime.AsyncResponder
Fields in org.glassfish.jersey.server declared as AsyncContext Modifier and Type Field Description private AsyncContext
ChunkedOutput. asyncContext
Methods in org.glassfish.jersey.server that return AsyncContext Modifier and Type Method Description AsyncContext
ServerRuntime.AsyncResponderHolder. get()
Constructor parameters in org.glassfish.jersey.server with type arguments of type AsyncContext Constructor Description ChunkedOutput(byte[] chunkDelimiter, javax.inject.Provider<AsyncContext> asyncContextProvider)
Create newChunkedOutput
with a custom chunk delimiter. -
Uses of AsyncContext in org.glassfish.jersey.server.internal.inject
Fields in org.glassfish.jersey.server.internal.inject with type parameters of type AsyncContext Modifier and Type Field Description private javax.inject.Provider<AsyncContext>
AsyncResponseValueParamProvider. asyncContextProvider
Constructor parameters in org.glassfish.jersey.server.internal.inject with type arguments of type AsyncContext Constructor Description AsyncResponseValueParamProvider(javax.inject.Provider<AsyncContext> asyncContextProvider)
Initialize the provider. -
Uses of AsyncContext in org.glassfish.jersey.server.internal.process
Fields in org.glassfish.jersey.server.internal.process with type parameters of type AsyncContext Modifier and Type Field Description private Ref<Value<AsyncContext>>
RequestProcessingContext. asyncContextValueRef
Methods in org.glassfish.jersey.server.internal.process that return AsyncContext Modifier and Type Method Description AsyncContext
RequestProcessingContext. asyncContext()
Get the asynchronous context associated with this request processing context.AsyncContext
RequestProcessingConfigurator.AsyncContextFactory. get()
Methods in org.glassfish.jersey.server.internal.process that return types with arguments of type AsyncContext Modifier and Type Method Description Value<AsyncContext>
RequestProcessingContext. asyncContextValue()
Get aValue
instance holding the asynchronous context associated with this request processing context.Method parameters in org.glassfish.jersey.server.internal.process with type arguments of type AsyncContext Modifier and Type Method Description void
RequestProcessingContext. initAsyncContext(Value<AsyncContext> lazyContextValue)
Lazily initializeAsyncContext
for this request processing context.
-