Uses of Interface
com.yahoo.jdisc.handler.RequestHandler
-
Packages that use RequestHandler Package Description com.yahoo.jdisc Provides the common classes and interfaces of the jDISC core.com.yahoo.jdisc.handler Provides classes and interfaces for implementing aRequestHandler
.com.yahoo.jdisc.service Provides classes and interfaces for implementing aClientProvider
or aServerProvider
.com.yahoo.jdisc.test Provides classes and interfaces for implementing unit tests of jDISC components. -
-
Uses of RequestHandler in com.yahoo.jdisc
Methods in com.yahoo.jdisc that return RequestHandler Modifier and Type Method Description RequestHandler
Container. resolveHandler(Request request)
Attempts to find aRequestHandler
in the current server- (ifRequest.isServerRequest()
is true) or client- (ifRequest.isServerRequest()
is false)BindingSet
that matches the givenURI
.Methods in com.yahoo.jdisc that return types with arguments of type RequestHandler Modifier and Type Method Description com.yahoo.jdisc.application.BindingMatch<RequestHandler>
Request. getBindingMatch()
Returns the last resolvedBindingMatch
, or null if none has been resolved yet.Method parameters in com.yahoo.jdisc with type arguments of type RequestHandler Modifier and Type Method Description Request
Request. setBindingMatch(com.yahoo.jdisc.application.BindingMatch<RequestHandler> bindingMatch)
Sets the last resolvedBindingMatch
of this Request. -
Uses of RequestHandler in com.yahoo.jdisc.handler
Classes in com.yahoo.jdisc.handler that implement RequestHandler Modifier and Type Class Description class
AbstractRequestHandler
This class provides an abstractRequestHandler
implementation with reasonable defaults for everything buthandleRequest(Request, ResponseHandler)
.class
ThreadedRequestHandler
This class implements aRequestHandler
with a synchronousThreadedRequestHandler.handleRequest(Request, BufferedContentChannel, ResponseHandler)
API for handlingRequest
s. -
Uses of RequestHandler in com.yahoo.jdisc.service
Subinterfaces of RequestHandler in com.yahoo.jdisc.service Modifier and Type Interface Description interface
ClientProvider
This interface defines a component that is capable of acting as a client to an external server.Classes in com.yahoo.jdisc.service that implement RequestHandler Modifier and Type Class Description class
AbstractClientProvider
This is a convenient parent class forClientProvider
with default implementations for all but the essentialhandleRequest(Request, ResponseHandler)
method. -
Uses of RequestHandler in com.yahoo.jdisc.test
Classes in com.yahoo.jdisc.test that implement RequestHandler Modifier and Type Class Description class
NonWorkingClientProvider
class
NonWorkingRequestHandler
-