Interface | Description |
---|---|
HttpEvent |
The HttpEvent interface, which indicates the type of the event that is
being processed, as well as provides useful callbacks and utility objects.
|
HttpEventFilter |
An event filter, similar to regular filters, performs filtering tasks on either
the request to a resource (an event driven Servlet), or on the response from a resource, or both.
|
HttpEventFilterChain |
A HttpEventFilterChain is an object provided by the Servlet container to the developer
giving a view into the invocation chain of a filtered event for a resource.
|
HttpEventServlet |
This interface should be implemented by Servlets which would like to handle
asynchronous IO, receiving events when data is available for reading, and
being able to output data without the need for being invoked by the container.
|
Enum | Description |
---|---|
HttpEvent.EventType |
Enumeration describing the major events that the container can invoke
the EventHttpServlet event() method with:
BEGIN - will be called at the beginning
of the processing of the connection.
|