Uses of Interface
org.eclipse.jetty.server.Connector
-
Packages that use Connector Package Description org.eclipse.jetty.server Jetty Server : Core Server APIorg.eclipse.jetty.server.nio Jetty Server : Core Server Connector -
-
Uses of Connector in org.eclipse.jetty.server
Subinterfaces of Connector in org.eclipse.jetty.server Modifier and Type Interface Description interface
NetworkConnector
AConnector
for TCP/IP network connectorsClasses in org.eclipse.jetty.server that implement Connector Modifier and Type Class Description class
AbstractConnector
An abstract implementation ofConnector
that provides aConnectionFactory
mechanism for creatingConnection
instances for various protocols (HTTP, SSL, etc).class
AbstractNetworkConnector
An abstract Network Connector.class
LocalConnector
A local connector, mostly for testing purposes.class
NetworkTrafficServerConnector
A specialized version ofServerConnector
that supportsNetworkTrafficListener
s.class
ServerConnector
ThisConnector
implementation is the primary connector for the Jetty server over TCP/IP.Methods in org.eclipse.jetty.server that return Connector Modifier and Type Method Description Connector
HttpChannel. getConnector()
Connector
HttpConnection. getConnector()
Connector
NegotiatingServerConnection. getConnector()
Connector[]
Server. getConnectors()
protected Connector[]
LowResourceMonitor. getMonitoredOrServerConnectors()
Methods in org.eclipse.jetty.server that return types with arguments of type Connector Modifier and Type Method Description java.util.Collection<Connector>
LowResourceMonitor. getMonitoredConnectors()
Methods in org.eclipse.jetty.server with parameters of type Connector Modifier and Type Method Description void
Server. addConnector(Connector connector)
protected AbstractConnection
AbstractConnectionFactory. configure(AbstractConnection connection, Connector connector, EndPoint endPoint)
protected AbstractConnection
SslConnectionFactory. configure(AbstractConnection connection, Connector connector, EndPoint endPoint)
void
ForwardedRequestCustomizer. customize(Connector connector, HttpConfiguration config, Request request)
void
HostHeaderCustomizer. customize(Connector connector, HttpConfiguration channelConfig, Request request)
void
HttpConfiguration.Customizer. customize(Connector connector, HttpConfiguration channelConfig, Request request)
void
ProxyCustomizer. customize(Connector connector, HttpConfiguration channelConfig, Request request)
void
SecureRequestCustomizer. customize(Connector connector, HttpConfiguration channelConfig, Request request)
protected java.lang.String
AbstractConnectionFactory. findNextProtocol(Connector connector)
protected static java.lang.String
AbstractConnectionFactory. findNextProtocol(Connector connector, java.lang.String currentProtocol)
Connection
ConnectionFactory. newConnection(Connector connector, EndPoint endPoint)
Creates a newConnection
with the given parametersConnection
DetectorConnectionFactory. newConnection(Connector connector, EndPoint endPoint)
Connection
HttpConnectionFactory. newConnection(Connector connector, EndPoint endPoint)
Connection
NegotiatingServerConnectionFactory. newConnection(Connector connector, EndPoint endPoint)
Connection
SslConnectionFactory. newConnection(Connector connector, EndPoint endPoint)
protected abstract AbstractConnection
NegotiatingServerConnectionFactory. newServerConnection(Connector connector, EndPoint endPoint, javax.net.ssl.SSLEngine engine, java.util.List<java.lang.String> protocols, java.lang.String defaultProtocol)
protected SslConnection
SslConnectionFactory. newSslConnection(Connector connector, EndPoint endPoint, javax.net.ssl.SSLEngine engine)
protected void
DetectorConnectionFactory. nextProtocol(Connector connector, EndPoint endPoint, java.nio.ByteBuffer buffer)
Callback method called when detection was unsuccessful.protected void
OptionalSslConnectionFactory. nextProtocol(Connector connector, EndPoint endPoint, java.nio.ByteBuffer buffer)
Deprecated.Callback method invoked when the detected bytes are not TLS.void
Server. removeConnector(Connector connector)
Convenience method which callsServer.getConnectors()
andServer.setConnectors(Connector[])
to remove a connector.void
Server. setConnectors(Connector[] connectors)
Set the connectors for this server.Connection
ConnectionFactory.Upgrading. upgradeConnection(Connector connector, EndPoint endPoint, MetaData.Request upgradeRequest, HttpFields responseFields)
Create a connection for an upgrade request.protected static void
DetectorConnectionFactory. upgradeToConnectionFactory(ConnectionFactory connectionFactory, Connector connector, EndPoint endPoint)
Utility method that performs an upgrade to the specified connection factory, disposing of the given resources when needed.Method parameters in org.eclipse.jetty.server with type arguments of type Connector Modifier and Type Method Description void
LowResourceMonitor. setMonitoredConnectors(java.util.Collection<Connector> monitoredConnectors)
Constructors in org.eclipse.jetty.server with parameters of type Connector Constructor Description AcceptRateLimit(int limit, long period, java.util.concurrent.TimeUnit units, Connector... connectors)
ConnectionLimit(int maxConnections, Connector... connectors)
HttpChannel(Connector connector, HttpConfiguration configuration, EndPoint endPoint, HttpTransport transport)
HttpChannelOverHttp(HttpConnection httpConnection, Connector connector, HttpConfiguration config, EndPoint endPoint, HttpTransport transport)
HttpConnection(HttpConfiguration config, Connector connector, EndPoint endPoint, HttpCompliance compliance, boolean recordComplianceViolations)
NegotiatingServerConnection(Connector connector, EndPoint endPoint, javax.net.ssl.SSLEngine engine, java.util.List<java.lang.String> protocols, java.lang.String defaultProtocol)
-
Uses of Connector in org.eclipse.jetty.server.nio
Classes in org.eclipse.jetty.server.nio that implement Connector Modifier and Type Class Description class
NetworkTrafficSelectChannelConnector
Deprecated.useNetworkTrafficServerConnector
instead.
-