| org.apache.coyote.ProtocolHandler
All known Subclasses: org.apache.jk.server.JkCoyoteHandler, org.apache.coyote.http11.Http11AprProtocol, org.apache.coyote.ajp.AjpProtocol, org.apache.coyote.ajp.AjpAprProtocol, org.apache.coyote.http11.Http11Protocol, org.apache.coyote.memory.MemoryProtocolHandler, org.apache.coyote.http11.Http11NioProtocol,
ProtocolHandler | public interface ProtocolHandler (Code) | | Abstract the protocol implementation, including threading, etc.
Processor is single threaded and specific to stream-based protocols,
will not fit Jk protocols like JNI.
This is the main interface to be implemented by a coyoute connector.
Adapter is the main interface to be impleneted by a coyote servlet container.
author: Remy Maucherat author: Costin Manolache See Also: Adapter |
pause | public void pause() throws Exception(Code) | | Pause the protocol (optional).
|
resume | public void resume() throws Exception(Code) | | Resume the protocol (optional).
|
setAdapter | public void setAdapter(Adapter adapter)(Code) | | The adapter, used to call the connector.
|
|
|