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 interfaceNetworkConnectorAConnectorfor TCP/IP network connectorsClasses in org.eclipse.jetty.server that implement Connector Modifier and Type Class Description classAbstractConnectorAn abstract implementation ofConnectorthat provides aConnectionFactorymechanism for creatingConnectioninstances for various protocols (HTTP, SSL, etc).classAbstractNetworkConnectorAn abstract Network Connector.classLocalConnectorA local connector, mostly for testing purposes.classNetworkTrafficServerConnectorA specialized version ofServerConnectorthat supportsNetworkTrafficListeners.classServerConnectorThisConnectorimplementation 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 ConnectorHttpChannel. getConnector()ConnectorHttpConnection. getConnector()ConnectorNegotiatingServerConnection. 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 voidServer. addConnector(Connector connector)protected AbstractConnectionAbstractConnectionFactory. configure(AbstractConnection connection, Connector connector, EndPoint endPoint)protected AbstractConnectionSslConnectionFactory. configure(AbstractConnection connection, Connector connector, EndPoint endPoint)voidForwardedRequestCustomizer. customize(Connector connector, HttpConfiguration config, Request request)voidHostHeaderCustomizer. customize(Connector connector, HttpConfiguration channelConfig, Request request)voidHttpConfiguration.Customizer. customize(Connector connector, HttpConfiguration channelConfig, Request request)voidProxyCustomizer. customize(Connector connector, HttpConfiguration channelConfig, Request request)voidSecureRequestCustomizer. customize(Connector connector, HttpConfiguration channelConfig, Request request)protected java.lang.StringAbstractConnectionFactory. findNextProtocol(Connector connector)protected static java.lang.StringAbstractConnectionFactory. findNextProtocol(Connector connector, java.lang.String currentProtocol)ConnectionConnectionFactory. newConnection(Connector connector, EndPoint endPoint)Creates a newConnectionwith the given parametersConnectionDetectorConnectionFactory. newConnection(Connector connector, EndPoint endPoint)ConnectionHttpConnectionFactory. newConnection(Connector connector, EndPoint endPoint)ConnectionNegotiatingServerConnectionFactory. newConnection(Connector connector, EndPoint endPoint)ConnectionSslConnectionFactory. newConnection(Connector connector, EndPoint endPoint)protected abstract AbstractConnectionNegotiatingServerConnectionFactory. newServerConnection(Connector connector, EndPoint endPoint, javax.net.ssl.SSLEngine engine, java.util.List<java.lang.String> protocols, java.lang.String defaultProtocol)protected SslConnectionSslConnectionFactory. newSslConnection(Connector connector, EndPoint endPoint, javax.net.ssl.SSLEngine engine)protected voidDetectorConnectionFactory. nextProtocol(Connector connector, EndPoint endPoint, java.nio.ByteBuffer buffer)Callback method called when detection was unsuccessful.protected voidOptionalSslConnectionFactory. nextProtocol(Connector connector, EndPoint endPoint, java.nio.ByteBuffer buffer)Deprecated.Callback method invoked when the detected bytes are not TLS.voidServer. removeConnector(Connector connector)Convenience method which callsServer.getConnectors()andServer.setConnectors(Connector[])to remove a connector.voidServer. setConnectors(Connector[] connectors)Set the connectors for this server.ConnectionConnectionFactory.Upgrading. upgradeConnection(Connector connector, EndPoint endPoint, MetaData.Request upgradeRequest, HttpFields responseFields)Create a connection for an upgrade request.protected static voidDetectorConnectionFactory. 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 voidLowResourceMonitor. 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 classNetworkTrafficSelectChannelConnectorDeprecated.useNetworkTrafficServerConnectorinstead.
-