Package org.eclipse.jetty.server
Class AbstractNetworkConnector
java.lang.Object
org.eclipse.jetty.util.component.AbstractLifeCycle
org.eclipse.jetty.util.component.ContainerLifeCycle
org.eclipse.jetty.server.AbstractConnector
org.eclipse.jetty.server.AbstractNetworkConnector
- All Implemented Interfaces:
Closeable,AutoCloseable,Connector,NetworkConnector,Container,Destroyable,Dumpable,Dumpable.DumpableContainer,Graceful,LifeCycle
- Direct Known Subclasses:
ServerConnector
@ManagedObject("AbstractNetworkConnector")
@Deprecated(since="2021-05-27")
public abstract class AbstractNetworkConnector
extends AbstractConnector
implements NetworkConnector
Deprecated.
The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
An abstract Network Connector.
Extends the AbstractConnector support for the NetworkConnector interface.
-
Nested Class Summary
Nested 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.Graceful
Graceful.ShutdownNested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener -
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionAbstractNetworkConnector(Server server, Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, ConnectionFactory... factories) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Deprecated.Performs the activities needed to close the network communication (for example, to stop accepting network connections).getHost()Deprecated.intDeprecated.intgetPort()Deprecated.voidopen()Deprecated.Performs the activities needed to open the network communication (for example, to start accepting incoming network connections).voidDeprecated.voidsetPort(int port) Deprecated.shutdown()Deprecated.toString()Deprecated.Methods inherited from class org.eclipse.jetty.server.AbstractConnector
addConnectionFactory, addFirstConnectionFactory, addIfAbsentConnectionFactory, clearConnectionFactories, getAcceptorPriorityDelta, getAcceptors, getByteBufferPool, getConnectedEndPoints, getConnectionFactories, getConnectionFactory, getConnectionFactory, getDefaultConnectionFactory, getDefaultProtocol, getExecutor, getHttpChannelListeners, getIdleTimeout, getName, getProtocols, getScheduler, getServer, isAccepting, isShutdown, join, join, removeConnectionFactory, setAccepting, setAcceptorPriorityDelta, setConnectionFactories, setDefaultProtocol, setIdleTimeout, setNameMethods inherited from class org.eclipse.jetty.util.component.ContainerLifeCycle
addBean, addBean, addEventListener, addManaged, contains, destroy, dump, dump, dump, dump, dump, dumpObject, dumpStdErr, getBean, getBeans, getBeans, getContainedBeans, isAuto, isManaged, isUnmanaged, manage, removeBean, removeBeans, removeEventListener, setBeans, setStopTimeout, 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
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.eclipse.jetty.server.Connector
getByteBufferPool, getConnectedEndPoints, getConnectionFactories, getConnectionFactory, getConnectionFactory, getDefaultConnectionFactory, getExecutor, getIdleTimeout, getName, getProtocols, getScheduler, getServer, getTransportMethods inherited from interface org.eclipse.jetty.util.component.Container
addBean, addBean, addEventListener, getBean, getBeans, getBeans, getContainedBeans, isManaged, manage, removeBean, removeEventListener, unmanageMethods inherited from interface org.eclipse.jetty.util.component.Dumpable.DumpableContainer
isDumpableMethods inherited from interface org.eclipse.jetty.util.component.Graceful
isShutdownMethods inherited from interface org.eclipse.jetty.util.component.LifeCycle
addLifeCycleListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stopMethods inherited from interface org.eclipse.jetty.server.NetworkConnector
isOpen
-
Constructor Details
-
AbstractNetworkConnector
public AbstractNetworkConnector(Server server, Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, ConnectionFactory... factories) Deprecated.
-
-
Method Details
-
setHost
Deprecated. -
getHost
@ManagedAttribute("The network interface this connector binds to as an IP address or a hostname. If null or 0.0.0.0, then bind to all interfaces.") public String getHost()Deprecated.- Specified by:
getHostin interfaceNetworkConnector- Returns:
- The hostname representing the interface to which this connector will bind, or null for all interfaces.
-
setPort
public void setPort(int port) Deprecated. -
getPort
@ManagedAttribute("Port this connector listens on. If set the 0 a random port is assigned which may be obtained with getLocalPort()") public int getPort()Deprecated.- Specified by:
getPortin interfaceNetworkConnector- Returns:
- The configured port for the connector or 0 if any available port may be used.
-
getLocalPort
public int getLocalPort()Deprecated.- Specified by:
getLocalPortin interfaceNetworkConnector- Returns:
- The actual port the connector is listening on, or -1 if it has not been opened, or -2 if it has been closed.
-
open
Deprecated.Description copied from interface:NetworkConnectorPerforms the activities needed to open the network communication (for example, to start accepting incoming network connections).
- Specified by:
openin interfaceNetworkConnector- Throws:
IOException- if this connector cannot be opened- See Also:
-
close
public void close()Deprecated.Description copied from interface:NetworkConnectorPerforms the activities needed to close the network communication (for example, to stop accepting network connections).
Once a connector has been closed, it cannot be opened again without first callingLifeCycle.stop()and it will not be active again until a subsequent call toLifeCycle.start()- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein interfaceNetworkConnector
-
shutdown
Deprecated.- Specified by:
shutdownin interfaceGraceful- Overrides:
shutdownin classAbstractConnector
-
toString
Deprecated.- Overrides:
toStringin classAbstractConnector
-