Package org.apache.coyote
Interface Adapter
- All Known Implementing Classes:
CoyoteAdapter
public interface Adapter
Adapter. This represents the entry point in a coyote-based servlet container.
- Author:
- Remy Maucherat
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
asyncDispatch
(Request req, Response res, SocketEvent status) Dispatch asynchronous event.void
checkRecycled
(Request req, Response res) Assert that request and response have been recycled.Provide the name of the domain to use to register MBeans for components associated with the connector.void
Callback to allow logging access outside of the execution of the regular service.boolean
Prepare the given request/response for processing.void
Call the service method, and notify all listeners.
-
Method Details
-
service
Call the service method, and notify all listeners.- Parameters:
req
- The request objectres
- The response object- Throws:
Exception
- if an error happens during handling of the request. Common errors are:- IOException if an input/output error occurs and we are processing an included servlet (otherwise it is swallowed and handled by the top level error handler mechanism)
- ServletException if a servlet throws an exception and we are processing an included servlet (otherwise it is swallowed and handled by the top level error handler mechanism)
-
prepare
Prepare the given request/response for processing. This method requires that the request object has been populated with the information available from the HTTP headers.- Parameters:
req
- The request objectres
- The response object- Returns:
true
if processing can continue, otherwisefalse
in which case an appropriate error will have been set on the response- Throws:
Exception
- If the processing fails unexpectedly
-
asyncDispatch
Dispatch asynchronous event.- Parameters:
req
- the request objectres
- the response objectstatus
- the event being processed- Returns:
true
if the dispatch was successful- Throws:
Exception
- If the processing fails unexpectedly
-
log
-
checkRecycled
Assert that request and response have been recycled. If they have not then log a warning and force a recycle. This method is called as a safety check when a processor is being recycled and may be returned to a pool for reuse.- Parameters:
req
- Requestres
- Response
-
getDomain
String getDomain()Provide the name of the domain to use to register MBeans for components associated with the connector.- Returns:
- The MBean domain name
-