Package org.eclipse.jetty.server
Interface ConnectionFactory.Upgrading
- All Superinterfaces:
ConnectionFactory
- All Known Implementing Classes:
HTTP2CServerConnectionFactory
- Enclosing interface:
- ConnectionFactory
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.jetty.server.ConnectionFactory
ConnectionFactory.Configuring, ConnectionFactory.Detecting, ConnectionFactory.Upgrading
-
Method Summary
Modifier and TypeMethodDescriptionupgradeConnection
(Connector connector, EndPoint endPoint, MetaData.Request upgradeRequest, HttpFields.Mutable responseFields) Create a connection for an upgrade request.Methods inherited from interface org.eclipse.jetty.server.ConnectionFactory
getProtocol, getProtocols, newConnection
-
Method Details
-
upgradeConnection
Connection upgradeConnection(Connector connector, EndPoint endPoint, MetaData.Request upgradeRequest, HttpFields.Mutable responseFields) throws BadMessageException Create a connection for an upgrade request.This is a variation of
ConnectionFactory.newConnection(Connector, EndPoint)
that can create (and/or customise) a connection for an upgrade request. Implementations may callConnectionFactory.newConnection(Connector, EndPoint)
or may construct the connection instance themselves.- Parameters:
connector
- The connector to upgrade for.endPoint
- The endpoint of the connection.upgradeRequest
- The meta data of the upgrade request.responseFields
- The fields to be sent with the 101 response- Returns:
- Null to indicate that request processing should continue normally without upgrading. A new connection instance to indicate that the upgrade should proceed.
- Throws:
BadMessageException
- Thrown to indicate the upgrade attempt was illegal and that a bad message response should be sent.
-