|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.mortbay.util.ThreadPool
org.mortbay.util.ThreadedServer
org.mortbay.http.SocketListener
Socket HTTP Listener. The behaviour of the listener can be controlled with the attributues of the ThreadedServer and ThreadPool from which it is derived. Specifically:
MinThreads - Minumum threads waiting to service requests.
MaxThread - Maximum thread that will service requests.
MaxIdleTimeMs - Time for an idle thread to wait for a request or read.
LowResourcePersistTimeMs - time in ms that connections will persist if listener is
low on resources.
| Nested Class Summary |
| Nested classes inherited from class org.mortbay.util.ThreadPool |
ThreadPool.PoolThread |
| Field Summary |
| Fields inherited from class org.mortbay.util.ThreadPool |
__DAEMON, __PRIORITY |
| Fields inherited from interface org.mortbay.http.HttpListener |
ATTRIBUTE |
| Constructor Summary | |
SocketListener()
|
|
SocketListener(InetAddrPort address)
|
|
| Method Summary | |
void |
customizeRequest(HttpConnection connection,
HttpRequest request)
Customize the request from connection. |
int |
getBufferReserve()
Get the size of the header reserve area. |
int |
getBufferSize()
Get the size of the buffers used by connections from this listener. |
int |
getConfidentialPort()
Get the protocol port to use for confidential redirections. |
java.lang.String |
getConfidentialScheme()
Get the protocol scheme to use for confidential redirections. |
java.lang.String |
getDefaultScheme()
Get the default scheme for requests. |
HttpHandler |
getHttpHandler()
Get an optional HttpHandler for the listener. |
HttpServer |
getHttpServer()
Get the HttpServer instance for this HttpListener. |
boolean |
getIdentifyListener()
|
int |
getIntegralPort()
Get the protocol port to use for integral redirections. |
java.lang.String |
getIntegralScheme()
Get the protocol scheme to use for integral redirections. |
int |
getLowResourcePersistTimeMs()
|
int |
getLowResources()
|
void |
handleConnection(java.net.Socket socket)
Handle Job. |
boolean |
isConfidential(HttpConnection connection)
Get the confidential status of a connection. |
boolean |
isIntegral(HttpConnection connection)
Get the integral status of a connection. |
boolean |
isLowOnResources()
Get the lowOnResource state of the listener. |
boolean |
isOutOfResources()
Get the outOfResource state of the listener. |
void |
persistConnection(HttpConnection connection)
Persist the connection. |
void |
setBufferReserve(int size)
|
void |
setBufferSize(int size)
|
void |
setConfidentialPort(int confidentialPort)
|
void |
setConfidentialScheme(java.lang.String confidentialScheme)
|
void |
setDefaultScheme(java.lang.String scheme)
|
void |
setHttpHandler(HttpHandler handler)
|
void |
setHttpServer(HttpServer server)
Set the HttpServer instance for this HttpListener. |
void |
setIdentifyListener(boolean identifyListener)
|
void |
setIntegralPort(int integralPort)
|
void |
setIntegralScheme(java.lang.String integralScheme)
|
void |
setLowResourcePersistTimeMs(int ms)
Set the low resource persistace time. |
void |
setLowResources(int lowResources)
|
void |
start()
Start the LifeCycle. |
void |
stop()
Stop the LifeCycle. |
| Methods inherited from class org.mortbay.util.ThreadedServer |
getAcceptorThreads, getAcceptQueueSize, getHost, getInetAddress, getInetAddrPort, getLingerTimeSecs, getMaxReadTimeMs, getPort, getServerSocket, getTcpNoDelay, handle, open, setAcceptorThreads, setAcceptQueueSize, setHost, setInetAddress, setInetAddrPort, setLingerTimeSecs, setMaxReadTimeMs, setPort, setTcpNoDelay, toString |
| Methods inherited from class org.mortbay.util.ThreadPool |
getIdleThreads, getMaxIdleTimeMs, getMaxThreads, getMinThreads, getName, getPoolName, getThreads, getThreadsPriority, isDaemon, isStarted, join, run, setDaemon, setMaxIdleTimeMs, setMaxStopTimeMs, setMaxThreads, setMinThreads, setName, setPoolName, setThreadsPriority, shrink |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.mortbay.http.HttpListener |
getHost, getPort, setHost, setPort |
| Methods inherited from interface org.mortbay.util.LifeCycle |
isStarted |
| Constructor Detail |
public SocketListener()
public SocketListener(InetAddrPort address)
| Method Detail |
public HttpServer getHttpServer()
HttpListener
getHttpServer in interface HttpListenerpublic void setHttpServer(HttpServer server)
HttpListener
setHttpServer in interface HttpListenerserver - The HttpServer instance this HttpListener has been added to.public HttpHandler getHttpHandler()
HttpListener
getHttpHandler in interface HttpListenerpublic void setHttpHandler(HttpHandler handler)
public int getBufferSize()
HttpListener
getBufferSize in interface HttpListenerpublic void setBufferSize(int size)
public int getBufferReserve()
HttpListener
getBufferReserve in interface HttpListenerpublic void setBufferReserve(int size)
public boolean getIdentifyListener()
public void setIdentifyListener(boolean identifyListener)
identifyListener - If true, the listener name is added to all
requests as the org.mortbay.http.HttListener attributepublic void setDefaultScheme(java.lang.String scheme)
public java.lang.String getDefaultScheme()
HttpListener
getDefaultScheme in interface HttpListenerpublic int getLowResources()
public void setLowResources(int lowResources)
lowResources - The number of idle threads needed to not be in
low resources state.public int getLowResourcePersistTimeMs()
public void setLowResourcePersistTimeMs(int ms)
ms - time in ms that connections will persist if listener is
low on resources.
public void start()
throws java.lang.Exception
LifeCycle
start in interface LifeCyclestart in class ThreadedServerjava.lang.Exception
public void stop()
throws java.lang.InterruptedException
LifeCycle
stop in interface LifeCyclestop in class ThreadedServerjava.lang.InterruptedException
public void handleConnection(java.net.Socket socket)
throws java.io.IOException
socket - A Connection.
java.io.IOException
public void customizeRequest(HttpConnection connection,
HttpRequest request)
customizeRequest in interface HttpListenerrequest - connection - The connection the request was received on, which must
be a HttpConnection created by this listener.public void persistConnection(HttpConnection connection)
persistConnection in interface HttpListenerconnection - The HttpConnection to use.public boolean isLowOnResources()
isLowOnResources in interface HttpListenerpublic boolean isOutOfResources()
isOutOfResources in interface HttpListenerpublic boolean isIntegral(HttpConnection connection)
HttpListener
isIntegral in interface HttpListenerconnection - The connection to test.
public boolean isConfidential(HttpConnection connection)
HttpListener
isConfidential in interface HttpListenerconnection - The connection to test.
public java.lang.String getIntegralScheme()
HttpListener
getIntegralScheme in interface HttpListenerpublic void setIntegralScheme(java.lang.String integralScheme)
public int getIntegralPort()
HttpListener
getIntegralPort in interface HttpListenerpublic void setIntegralPort(int integralPort)
public java.lang.String getConfidentialScheme()
HttpListener
getConfidentialScheme in interface HttpListenerpublic void setConfidentialScheme(java.lang.String confidentialScheme)
public int getConfidentialPort()
HttpListener
getConfidentialPort in interface HttpListenerpublic void setConfidentialPort(int confidentialPort)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||