Class PushMethodHandlerRouter
- java.lang.Object
-
- org.glassfish.jersey.server.internal.routing.PushMethodHandlerRouter
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.glassfish.jersey.server.internal.routing.Router
Router.Continuation
-
-
Field Summary
Fields Modifier and Type Field Description private MethodHandler
methodHandler
private Router
next
-
Constructor Summary
Constructors Constructor Description PushMethodHandlerRouter(MethodHandler methodHandler, Router next)
Create a newPushMethodHandlerRouter
instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Router.Continuation
apply(RequestProcessingContext context)
Performs a request routing task and returns the routed request together with arouting continuation
.
-
-
-
Field Detail
-
methodHandler
private final MethodHandler methodHandler
-
next
private final Router next
-
-
Constructor Detail
-
PushMethodHandlerRouter
PushMethodHandlerRouter(MethodHandler methodHandler, Router next)
Create a newPushMethodHandlerRouter
instance.- Parameters:
methodHandler
- method handler model providing the method handler instance.next
- next router to be invoked after the this one.
-
-
Method Detail
-
apply
public Router.Continuation apply(RequestProcessingContext context)
Description copied from interface:Router
Performs a request routing task and returns the routed request together with arouting continuation
.
-
-