Package org.eclipse.jetty.server
Class HttpChannelListeners
- java.lang.Object
-
- org.eclipse.jetty.server.HttpChannelListeners
-
- All Implemented Interfaces:
java.util.EventListener
,HttpChannel.Listener
public class HttpChannelListeners extends java.lang.Object implements HttpChannel.Listener
AHttpChannel.Listener
that holds a collection of otherHttpChannel.Listener
instances that are efficiently invoked without iteration.- See Also:
AbstractConnector
-
-
Field Summary
Fields Modifier and Type Field Description static HttpChannel.Listener
NOOP
-
Constructor Summary
Constructors Constructor Description HttpChannelListeners(java.util.Collection<HttpChannel.Listener> listeners)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onAfterDispatch(Request request)
Invoked just after the application returns from the first invocation.void
onBeforeDispatch(Request request)
Invoked just before calling the application.void
onComplete(Request request)
Invoked when the request and response processing are complete.void
onDispatchFailure(Request request, java.lang.Throwable failure)
Invoked when the application threw an exception.void
onRequestBegin(Request request)
Invoked just after the HTTP request line and headers have been parsed.void
onRequestContent(Request request, java.nio.ByteBuffer content)
Invoked every time a request content chunk has been parsed, just before making it available to the application.void
onRequestContentEnd(Request request)
Invoked when the end of the request content is detected.void
onRequestEnd(Request request)
Invoked when the request has been fully parsed.void
onRequestFailure(Request request, java.lang.Throwable failure)
Invoked when the request processing failed.void
onRequestTrailers(Request request)
Invoked when the request trailers have been parsed.void
onResponseBegin(Request request)
Invoked just before the response line is written to the network.void
onResponseCommit(Request request)
Invoked just after the response is committed (that is, the response line, headers and possibly some content have been written to the network).void
onResponseContent(Request request, java.nio.ByteBuffer content)
Invoked after a response content chunk has been written to the network.void
onResponseEnd(Request request)
Invoked when the response has been fully written.void
onResponseFailure(Request request, java.lang.Throwable failure)
Invoked when the response processing failed.
-
-
-
Field Detail
-
NOOP
public static HttpChannel.Listener NOOP
-
-
Constructor Detail
-
HttpChannelListeners
public HttpChannelListeners(java.util.Collection<HttpChannel.Listener> listeners)
-
-
Method Detail
-
onRequestBegin
public void onRequestBegin(Request request)
Description copied from interface:HttpChannel.Listener
Invoked just after the HTTP request line and headers have been parsed.- Specified by:
onRequestBegin
in interfaceHttpChannel.Listener
- Parameters:
request
- the request object
-
onBeforeDispatch
public void onBeforeDispatch(Request request)
Description copied from interface:HttpChannel.Listener
Invoked just before calling the application.- Specified by:
onBeforeDispatch
in interfaceHttpChannel.Listener
- Parameters:
request
- the request object
-
onDispatchFailure
public void onDispatchFailure(Request request, java.lang.Throwable failure)
Description copied from interface:HttpChannel.Listener
Invoked when the application threw an exception.- Specified by:
onDispatchFailure
in interfaceHttpChannel.Listener
- Parameters:
request
- the request objectfailure
- the exception thrown by the application
-
onAfterDispatch
public void onAfterDispatch(Request request)
Description copied from interface:HttpChannel.Listener
Invoked just after the application returns from the first invocation.- Specified by:
onAfterDispatch
in interfaceHttpChannel.Listener
- Parameters:
request
- the request object
-
onRequestContent
public void onRequestContent(Request request, java.nio.ByteBuffer content)
Description copied from interface:HttpChannel.Listener
Invoked every time a request content chunk has been parsed, just before making it available to the application.- Specified by:
onRequestContent
in interfaceHttpChannel.Listener
- Parameters:
request
- the request objectcontent
- aslice
of the request content chunk
-
onRequestContentEnd
public void onRequestContentEnd(Request request)
Description copied from interface:HttpChannel.Listener
Invoked when the end of the request content is detected.- Specified by:
onRequestContentEnd
in interfaceHttpChannel.Listener
- Parameters:
request
- the request object
-
onRequestTrailers
public void onRequestTrailers(Request request)
Description copied from interface:HttpChannel.Listener
Invoked when the request trailers have been parsed.- Specified by:
onRequestTrailers
in interfaceHttpChannel.Listener
- Parameters:
request
- the request object
-
onRequestEnd
public void onRequestEnd(Request request)
Description copied from interface:HttpChannel.Listener
Invoked when the request has been fully parsed.- Specified by:
onRequestEnd
in interfaceHttpChannel.Listener
- Parameters:
request
- the request object
-
onRequestFailure
public void onRequestFailure(Request request, java.lang.Throwable failure)
Description copied from interface:HttpChannel.Listener
Invoked when the request processing failed.- Specified by:
onRequestFailure
in interfaceHttpChannel.Listener
- Parameters:
request
- the request objectfailure
- the request failure
-
onResponseBegin
public void onResponseBegin(Request request)
Description copied from interface:HttpChannel.Listener
Invoked just before the response line is written to the network.- Specified by:
onResponseBegin
in interfaceHttpChannel.Listener
- Parameters:
request
- the request object
-
onResponseCommit
public void onResponseCommit(Request request)
Description copied from interface:HttpChannel.Listener
Invoked just after the response is committed (that is, the response line, headers and possibly some content have been written to the network).- Specified by:
onResponseCommit
in interfaceHttpChannel.Listener
- Parameters:
request
- the request object
-
onResponseContent
public void onResponseContent(Request request, java.nio.ByteBuffer content)
Description copied from interface:HttpChannel.Listener
Invoked after a response content chunk has been written to the network.- Specified by:
onResponseContent
in interfaceHttpChannel.Listener
- Parameters:
request
- the request objectcontent
- aslice
of the response content chunk
-
onResponseEnd
public void onResponseEnd(Request request)
Description copied from interface:HttpChannel.Listener
Invoked when the response has been fully written.- Specified by:
onResponseEnd
in interfaceHttpChannel.Listener
- Parameters:
request
- the request object
-
onResponseFailure
public void onResponseFailure(Request request, java.lang.Throwable failure)
Description copied from interface:HttpChannel.Listener
Invoked when the response processing failed.- Specified by:
onResponseFailure
in interfaceHttpChannel.Listener
- Parameters:
request
- the request objectfailure
- the response failure
-
onComplete
public void onComplete(Request request)
Description copied from interface:HttpChannel.Listener
Invoked when the request and response processing are complete.- Specified by:
onComplete
in interfaceHttpChannel.Listener
- Parameters:
request
- the request object
-
-