Package org.eclipse.jetty.server
Class ServerConnector.ServerConnectorManager
java.lang.Object
org.eclipse.jetty.util.component.AbstractLifeCycle
org.eclipse.jetty.util.component.ContainerLifeCycle
org.eclipse.jetty.io.SelectorManager
org.eclipse.jetty.server.ServerConnector.ServerConnectorManager
- All Implemented Interfaces:
Container,Destroyable,Dumpable,Dumpable.DumpableContainer,LifeCycle
- Enclosing class:
ServerConnector
-
Nested Class Summary
Nested classes/interfaces inherited from class org.eclipse.jetty.io.SelectorManager
SelectorManager.AcceptListenerNested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListenerNested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Container
Container.InheritedListener, Container.ListenerNested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainerNested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener -
Field Summary
Fields inherited from class org.eclipse.jetty.io.SelectorManager
DEFAULT_CONNECT_TIMEOUT, LOG -
Constructor Summary
ConstructorsConstructorDescriptionServerConnectorManager(Executor executor, Scheduler scheduler, int selectors) -
Method Summary
Modifier and TypeMethodDescriptionprotected voidaccepted(SelectableChannel channel) Callback method when a channel is accepted from theServerSocketChannelpassed toSelectorManager.acceptor(SelectableChannel).protected voidendPointClosed(EndPoint endpoint) Callback method invoked when an endpoint is closed.protected voidendPointOpened(EndPoint endpoint) Callback method invoked when an endpoint is opened.newConnection(SelectableChannel channel, EndPoint endpoint, Object attachment) Factory method to createConnection.protected ChannelEndPointnewEndPoint(SelectableChannel channel, ManagedSelector selectSet, SelectionKey selectionKey) Factory method to createEndPoint.toString()Methods inherited from class org.eclipse.jetty.io.SelectorManager
accept, accept, acceptor, addAcceptListener, addEventListener, connect, connectionClosed, connectionFailed, connectionOpened, doAccept, doFinishConnect, doStart, doStop, execute, getConnectTimeout, getExecutor, getReservedThreads, getScheduler, getSelectorCount, isConnectionPending, newSelector, newSelector, onAccepted, onAcceptFailed, onAccepting, removeAcceptListener, removeEventListener, setConnectTimeout, setReservedThreadsMethods inherited from class org.eclipse.jetty.util.component.ContainerLifeCycle
addBean, addBean, addEventListener, addManaged, contains, destroy, dump, dump, dump, dump, dump, dumpBeans, dumpObject, dumpObjects, dumpStdErr, dumpThis, getBean, getBeans, getBeans, getContainedBeans, getContainedBeans, isAuto, isManaged, isUnmanaged, manage, removeBean, removeBeans, removeEventListener, setBeans, setStopTimeout, start, stop, unmanage, updateBean, updateBean, updateBeansMethods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stopMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.eclipse.jetty.util.component.Dumpable.DumpableContainer
isDumpable
-
Constructor Details
-
ServerConnectorManager
-
-
Method Details
-
accepted
Description copied from class:SelectorManagerCallback method when a channel is accepted from theServerSocketChannelpassed toSelectorManager.acceptor(SelectableChannel). The default impl throws anUnsupportedOperationException, so it must be overridden by subclasses if a server channel is provided.- Overrides:
acceptedin classSelectorManager- Parameters:
channel- the- Throws:
IOException- if unable to accept channel
-
newEndPoint
protected ChannelEndPoint newEndPoint(SelectableChannel channel, ManagedSelector selectSet, SelectionKey selectionKey) throws IOException Description copied from class:SelectorManagerFactory method to create
EndPoint.This method is invoked as a result of the registration of a channel via
SelectorManager.connect(SelectableChannel, Object)orSelectorManager.accept(SelectableChannel).- Specified by:
newEndPointin classSelectorManager- Parameters:
channel- the channel associated to the endpointselectSet- the selector the channel is registered toselectionKey- the selection key- Returns:
- a new endpoint
- Throws:
IOException- if the endPoint cannot be created- See Also:
-
newConnection
public Connection newConnection(SelectableChannel channel, EndPoint endpoint, Object attachment) throws IOException Description copied from class:SelectorManagerFactory method to create
Connection.- Specified by:
newConnectionin classSelectorManager- Parameters:
channel- the channel associated to the connectionendpoint- the endpointattachment- the attachment- Returns:
- a new connection
- Throws:
IOException- if unable to create new connection
-
endPointOpened
Description copied from class:SelectorManagerCallback method invoked when an endpoint is opened.
- Overrides:
endPointOpenedin classSelectorManager- Parameters:
endpoint- the endpoint being opened
-
endPointClosed
Description copied from class:SelectorManagerCallback method invoked when an endpoint is closed.
- Overrides:
endPointClosedin classSelectorManager- Parameters:
endpoint- the endpoint being closed
-
toString
- Overrides:
toStringin classAbstractLifeCycle
-