public abstract class AbstractRequestHandler extends java.lang.Object implements RequestHandler
| コンストラクタと説明 |
|---|
AbstractRequestHandler() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
afterError(Request<?> request,
java.lang.Exception e)
Runs any additional processing logic on a request after it has failed.
|
void |
afterResponse(Request<?> request,
java.lang.Object response,
TimingInfo timingInfo)
Runs any additional processing logic on the specified request (after is
has been executed by the client runtime).
|
void |
beforeRequest(Request<?> request)
Runs any additional processing logic on the specified request (before it
is executed by the client runtime).
|
public void beforeRequest(Request<?> request)
RequestHandlerbeforeRequest インタフェース内 RequestHandlerrequest - The low level request being processed.public void afterResponse(Request<?> request, java.lang.Object response, TimingInfo timingInfo)
RequestHandlerafterResponse インタフェース内 RequestHandlerrequest - The low level request being processed.response - The response generated from the specified request.timingInfo - Timing information on the request's processing.public void afterError(Request<?> request, java.lang.Exception e)
RequestHandlerafterError インタフェース内 RequestHandlerrequest - The request that generated an error.e - The error that resulted from executing the request.