| |
|
| java.lang.Object org.apache.ajp.tomcat4.Ajp13Processor
Ajp13Processor | final class Ajp13Processor implements Lifecycle,Runnable(Code) | | author: Kevin Seguin version: $Revision: 1.14 $ $Date: 2004/02/24 08:48:41 $ |
Field Summary | |
protected StringManager | sm The string manager for this package. |
Method Summary | |
public void | addLifecycleListener(LifecycleListener listener) Add a lifecycle event listener to this component. | synchronized void | assign(Socket socket) Process an incoming TCP/IP connection on the specified socket. | public LifecycleListener[] | findLifecycleListeners() Get the lifecycle listeners associated with this lifecycle. | public void | removeLifecycleListener(LifecycleListener listener) Remove a lifecycle event listener from this component. | public void | run() The background thread that listens for incoming TCP/IP connections and
hands them off to an appropriate processor. | public void | start() Start the background thread we will use for request processing. | public void | stop() Stop the background thread we will use for request processing. |
sm | protected StringManager sm(Code) | | The string manager for this package.
|
Ajp13Processor | public Ajp13Processor(Ajp13Connector connector, int id, ThreadGroup threadGroup)(Code) | | Construct a new Ajp13Processor associated with the specified connector.
Parameters: connector - Ajp13Connector that owns this processor Parameters: id - Identifier of this Ajp13Processor (unique per connector) Parameters: threadGroup - The thread group any threads created by the processorshould be in. |
addLifecycleListener | public void addLifecycleListener(LifecycleListener listener)(Code) | | Add a lifecycle event listener to this component.
Parameters: listener - The listener to add |
assign | synchronized void assign(Socket socket)(Code) | | Process an incoming TCP/IP connection on the specified socket. Any
exception that occurs during processing must be logged and swallowed.
NOTE: This method is called from our Connector's thread. We
must assign it to our own thread so that multiple simultaneous
requests can be handled.
Parameters: socket - TCP socket to process |
findLifecycleListeners | public LifecycleListener[] findLifecycleListeners()(Code) | | Get the lifecycle listeners associated with this lifecycle. If this
Lifecycle has no listeners registered, a zero-length array is returned.
|
removeLifecycleListener | public void removeLifecycleListener(LifecycleListener listener)(Code) | | Remove a lifecycle event listener from this component.
Parameters: listener - The listener to add |
run | public void run()(Code) | | The background thread that listens for incoming TCP/IP connections and
hands them off to an appropriate processor.
|
start | public void start() throws LifecycleException(Code) | | Start the background thread we will use for request processing.
exception: LifecycleException - if a fatal startup error occurs |
stop | public void stop() throws LifecycleException(Code) | | Stop the background thread we will use for request processing.
exception: LifecycleException - if a fatal shutdown error occurs |
|
|
|