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 classClientH2UpgradeHandlerProtocol upgrade handler that upgrades the underlyingProtocolIOSessionto HTTP/2 in case of a successful protocol negotiation.classClientHttp1UpgradeHandlerProtocol upgrade handler that upgrades the underlyingProtocolIOSessionto HTTP/1.1 in case of a successful protocol negotiation or as a default fall-back.classServerH2UpgradeHandlerProtocol upgrade handler that upgrades the underlyingProtocolIOSessionto HTTP/2 in case of a successful protocol negotiation.classServerHttp1UpgradeHandlerProtocol upgrade handler that upgrades the underlyingProtocolIOSessionto 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. protocolUpgradeHandlerMapMethods in org.apache.hc.core5.reactor with parameters of type ProtocolUpgradeHandler Modifier and Type Method Description voidInternalDataChannel. registerProtocol(java.lang.String protocolId, ProtocolUpgradeHandler upgradeHandler)default voidProtocolIOSession. registerProtocol(java.lang.String protocolId, ProtocolUpgradeHandler upgradeHandler)Registers protocol upgrade handler with the given application protocol ID.
-