Uses of Class
org.glassfish.jersey.process.internal.Stage.Continuation
-
Packages that use Stage.Continuation Package Description org.glassfish.jersey.client Jersey client-side classes.org.glassfish.jersey.process.internal Common Jersey internal processing classes.org.glassfish.jersey.server Jersey server-side classes.org.glassfish.jersey.server.internal.routing Jersey server-side internal resource routing classes. -
-
Uses of Stage.Continuation in org.glassfish.jersey.client
Methods in org.glassfish.jersey.client that return Stage.Continuation Modifier and Type Method Description Stage.Continuation<ClientRequest>
ClientFilteringStages.RequestFilteringStage. apply(ClientRequest requestContext)
Stage.Continuation<ClientResponse>
ClientFilteringStages.ResponseFilterStage. apply(ClientResponse responseContext)
-
Uses of Stage.Continuation in org.glassfish.jersey.process.internal
Methods in org.glassfish.jersey.process.internal that return Stage.Continuation Modifier and Type Method Description Stage.Continuation<DATA>
Stage. apply(DATA data)
Performs a data processing task and returns the processed data together with aprocessing continuation
.Stage.Continuation<DATA>
Stages.InflectingStage. apply(DATA request)
Stage.Continuation<DATA>
Stages.LinkedStage. apply(DATA data)
static <DATA> Stage.Continuation<DATA>
Stage.Continuation. of(DATA result)
Create a terminal continuation from the processed data result.static <DATA> Stage.Continuation<DATA>
Stage.Continuation. of(DATA result, Stage<DATA> next)
Create a continuation from the processed data result and the stage to be invoked next. -
Uses of Stage.Continuation in org.glassfish.jersey.server
Methods in org.glassfish.jersey.server that return Stage.Continuation Modifier and Type Method Description Stage.Continuation<RequestProcessingContext>
ContainerFilteringStage. apply(RequestProcessingContext context)
Stage.Continuation<ContainerResponse>
ContainerFilteringStage.ResponseFilterStage. apply(ContainerResponse responseContext)
-
Uses of Stage.Continuation in org.glassfish.jersey.server.internal.routing
Methods in org.glassfish.jersey.server.internal.routing that return Stage.Continuation Modifier and Type Method Description Stage.Continuation<RequestProcessingContext>
MatchedEndpointExtractorStage. apply(RequestProcessingContext processingContext)
Stage.Continuation<RequestProcessingContext>
RoutingStage. apply(RequestProcessingContext context)
Performs a data processing task and returns the processed data together with aprocessing continuation
.
-