| |
|
| java.lang.Object org.apache.coyote.ajp.AjpProtocol
AjpProtocol | public class AjpProtocol implements ProtocolHandler,MBeanRegistration(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.
author: Remy Maucherat author: Costin Manolache |
Inner Class :protected static class AjpConnectionHandler implements Handler | |
keepAliveTimeout | protected int keepAliveTimeout(Code) | | The number of seconds Tomcat will wait for a subsequent request
before closing the connection.
|
packetSize | protected int packetSize(Code) | | AJP packet size.
|
processorCache | protected int processorCache(Code) | | Processor cache.
|
requiredSecret | protected String requiredSecret(Code) | | Required secret.
|
tomcatAuthentication | protected boolean tomcatAuthentication(Code) | | Should authentication be done in the native webserver layer,
or in the Servlet container ?
|
AjpProtocol | public AjpProtocol()(Code) | | |
getBacklog | public int getBacklog()(Code) | | |
getKeepAliveTimeout | public int getKeepAliveTimeout()(Code) | | |
getMaxThreads | public int getMaxThreads()(Code) | | |
getPacketSize | public int getPacketSize()(Code) | | |
getPort | public int getPort()(Code) | | |
getProcessorCache | public int getProcessorCache()(Code) | | |
getSoLinger | public int getSoLinger()(Code) | | |
getSoTimeout | public int getSoTimeout()(Code) | | |
getTcpNoDelay | public boolean getTcpNoDelay()(Code) | | |
getThreadPriority | public int getThreadPriority()(Code) | | |
getTomcatAuthentication | public boolean getTomcatAuthentication()(Code) | | |
postDeregister | public void postDeregister()(Code) | | |
postRegister | public void postRegister(Boolean registrationDone)(Code) | | |
setAdapter | public void setAdapter(Adapter adapter)(Code) | | The adapter, used to call the connector
|
setBacklog | public void setBacklog(int backlog)(Code) | | |
setKeepAliveTimeout | public void setKeepAliveTimeout(int timeout)(Code) | | |
setMaxThreads | public void setMaxThreads(int maxThreads)(Code) | | |
setPacketSize | public void setPacketSize(int packetSize)(Code) | | |
setPort | public void setPort(int port)(Code) | | |
setProcessorCache | public void setProcessorCache(int processorCache)(Code) | | |
setRequiredSecret | public void setRequiredSecret(String requiredSecret)(Code) | | |
setSoLinger | public void setSoLinger(int soLinger)(Code) | | |
setSoTimeout | public void setSoTimeout(int soTimeout)(Code) | | |
setTcpNoDelay | public void setTcpNoDelay(boolean tcpNoDelay)(Code) | | |
setThreadPriority | public void setThreadPriority(int threadPriority)(Code) | | |
setTomcatAuthentication | public void setTomcatAuthentication(boolean tomcatAuthentication)(Code) | | |
|
|
|