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 MethodHandlermethodHandlerprivate Routernext
-
Constructor Summary
Constructors Constructor Description PushMethodHandlerRouter(MethodHandler methodHandler, Router next)Create a newPushMethodHandlerRouterinstance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Router.Continuationapply(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 newPushMethodHandlerRouterinstance.- 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:RouterPerforms a request routing task and returns the routed request together with arouting continuation.
-
-