Uses of Interface
org.apache.hc.core5.reactor.ProtocolUpgradeHandler
-
Packages that use ProtocolUpgradeHandler Package Description org.apache.hc.core5.http2.impl.nio Default implementation of HTTP/2 transport based on the asynchronous (non-blocking) I/O model.org.apache.hc.core5.reactor Event driven network communication APIs and components loosely based on Doug Lea's reactor pattern. -
-
Uses of ProtocolUpgradeHandler in org.apache.hc.core5.http2.impl.nio
Classes in org.apache.hc.core5.http2.impl.nio that implement ProtocolUpgradeHandler Modifier and Type Class Description class
ClientH2UpgradeHandler
Protocol upgrade handler that upgrades the underlyingProtocolIOSession
to HTTP/2 in case of a successful protocol negotiation.class
ClientHttp1UpgradeHandler
Protocol upgrade handler that upgrades the underlyingProtocolIOSession
to HTTP/1.1 in case of a successful protocol negotiation or as a default fall-back.class
ServerH2UpgradeHandler
Protocol upgrade handler that upgrades the underlyingProtocolIOSession
to HTTP/2 in case of a successful protocol negotiation.class
ServerHttp1UpgradeHandler
Protocol upgrade handler that upgrades the underlyingProtocolIOSession
to HTTP/1.1 in case of a successful protocol negotiation or as a default fall-back. -
Uses of ProtocolUpgradeHandler in org.apache.hc.core5.reactor
Fields in org.apache.hc.core5.reactor with type parameters of type ProtocolUpgradeHandler Modifier and Type Field Description private java.util.concurrent.ConcurrentMap<java.lang.String,ProtocolUpgradeHandler>
InternalDataChannel. protocolUpgradeHandlerMap
Methods in org.apache.hc.core5.reactor with parameters of type ProtocolUpgradeHandler Modifier and Type Method Description void
InternalDataChannel. registerProtocol(java.lang.String protocolId, ProtocolUpgradeHandler upgradeHandler)
default void
ProtocolIOSession. registerProtocol(java.lang.String protocolId, ProtocolUpgradeHandler upgradeHandler)
Registers protocol upgrade handler with the given application protocol ID.
-