com.faunos.util.net.http
Class ExceptionResponseFactory
java.lang.Object
com.faunos.util.net.http.ExceptionResponseFactory
- All Implemented Interfaces:
- ResponseFactory
public class ExceptionResponseFactory
- extends Object
- implements ResponseFactory
A response factory that filters exceptions thrown by a contained
ResponseFactory instance.
- Author:
- Babak Farhang
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ExceptionResponseFactory
public ExceptionResponseFactory(ResponseFactory inner)
- Constructs an instance that wraps the given inner instance.
getResponse
public Stagelet getResponse(RequestHeader request,
StageletStack stack,
boolean asynchHint)
- Description copied from interface:
ResponseFactory
- Returns a response stagelet for the given request. At minimum,
the implementation returns a header
stage that writes out the HTTP response headers. More typically, the
returned stagelet will itself be only responsible for writing the
response content; for the HTTP response headers, it will first
push a ResponseHeaderStage
on the given stack. (Per the stagelet
contract, it must wait to push this header stage after its init
method is invoked.
- Specified by:
getResponse
in interface ResponseFactory
stack
- if the returned stagelet is itself stack-aware,
then it will push additional stagelets (e.g. the header response
stage) onto the given stack. The rules for when and how
stagelets can be pushed on the stack are described in the
Stagelet interface.asynchHint
- if true, then the response stagelet should try to process
non-network I/O based tasks asynchronously.- See Also:
Stagelet
,
HandletContext.processAsynch()