Uses of Interface
stincmale.server.reqres.RequestDispatcher
Package | Description |
---|---|
stincmale.server.netty4.tcp | |
stincmale.server.netty4.tcp.http | |
stincmale.server.reqres |
Contains functionality useful for request/response implementations of
Server . |
stincmale.server.reqres.spring | |
stincmale.server.reqres.spring.http |
-
Uses of RequestDispatcher in stincmale.server.netty4.tcp
Constructors in stincmale.server.netty4.tcp with parameters of type RequestDispatcher Constructor Description DispatchMonoHandler(RequestDispatcher<RQ,RS> dispatcher, long connectionIdleTimeoutMillis)
-
Uses of RequestDispatcher in stincmale.server.netty4.tcp.http
Classes in stincmale.server.netty4.tcp.http that implement RequestDispatcher Modifier and Type Class Description class
SimpleHttpRequestDispatcherByUrl
RequestDispatcherByProcessorName
that uses URI path of an HTTP request as the name of aRequestProcessor
.Constructors in stincmale.server.netty4.tcp.http with parameters of type RequestDispatcher Constructor Description HttpDispatchMonoHandler(RequestDispatcher<RequestWithMetadata<? extends FullHttpRequest>,FullHttpResponse> dispatcher, long connectionIdleTimeoutMillis)
-
Uses of RequestDispatcher in stincmale.server.reqres
Classes in stincmale.server.reqres that implement RequestDispatcher Modifier and Type Class Description class
RequestDispatcherByProcessorName<RQ,RS>
-
Uses of RequestDispatcher in stincmale.server.reqres.spring
Classes in stincmale.server.reqres.spring that implement RequestDispatcher Modifier and Type Class Description class
SpringRequestDispatcher<RQ,RS>
RequestDispatcherByProcessorName
that automatically searches forRequestProcessor
s String beans annotated with@
Processor
. -
Uses of RequestDispatcher in stincmale.server.reqres.spring.http
Classes in stincmale.server.reqres.spring.http that implement RequestDispatcher Modifier and Type Class Description class
SimpleSpringHttpRequestDispatcherByUrl
ThisRequestDispatcher
combines functionality of theSpringRequestDispatcher
andSimpleHttpRequestDispatcherByUrl
.