org.apache.geronimo.jetty
Interface JettyWebConnector

All Superinterfaces:
org.apache.geronimo.management.geronimo.NetworkConnector, org.apache.geronimo.management.geronimo.WebConnector
All Known Implementing Classes:
AJP13Connector, HTTPConnector, HTTPSConnector, JettyConnector

public interface JettyWebConnector
extends org.apache.geronimo.management.geronimo.WebConnector

A Jetty-specific extension to the standard Geronimo web connector interface.


Method Summary
 String getDefaultScheme()
           
 int getIdlethreads()
           
 int getLowThreads()
           
 int getLowThreadsMaxIdleTimeMs()
           
 int getMaxIdleTimeMs()
           
 int getMinThreads()
          Gets the minimum number of threads used to service connections from this connector.
 int getThreads()
           
 void setLowThreads(int lowThreads)
           
 void setLowThreadsMaxIdleTimeMs(int max)
           
 void setMaxIdleTimeMs(int max)
           
 void setMinThreads(int threads)
          Sets the minimum number of threads used to service connections from this connector.
 
Methods inherited from interface org.apache.geronimo.management.geronimo.WebConnector
getAcceptQueueSize, getBufferSizeBytes, getConnectUrl, getLingerMillis, getMaxThreads, getRedirectPort, isTcpNoDelay, setAcceptQueueSize, setBufferSizeBytes, setLingerMillis, setMaxThreads, setRedirectPort, setTcpNoDelay
 
Methods inherited from interface org.apache.geronimo.management.geronimo.NetworkConnector
getHost, getListenAddress, getPort, getProtocol, setHost, setPort
 

Method Detail

getMinThreads

int getMinThreads()
Gets the minimum number of threads used to service connections from this connector.


setMinThreads

void setMinThreads(int threads)
Sets the minimum number of threads used to service connections from this connector.


getThreads

int getThreads()

getIdlethreads

int getIdlethreads()

getDefaultScheme

String getDefaultScheme()

setMaxIdleTimeMs

void setMaxIdleTimeMs(int max)

getMaxIdleTimeMs

int getMaxIdleTimeMs()

setLowThreadsMaxIdleTimeMs

void setLowThreadsMaxIdleTimeMs(int max)

getLowThreadsMaxIdleTimeMs

int getLowThreadsMaxIdleTimeMs()

setLowThreads

void setLowThreads(int lowThreads)

getLowThreads

int getLowThreads()


Copyright © 2006 Apache Software Foundation. All Rights Reserved.