Uses of Class
org.apache.hc.core5.reactor.ssl.SSLIOSession
-
Packages that use SSLIOSession Package Description org.apache.hc.core5.reactor Event driven network communication APIs and components loosely based on Doug Lea's reactor pattern.org.apache.hc.core5.reactor.ssl TLS/SSL support for I/O reactors. -
-
Uses of SSLIOSession in org.apache.hc.core5.reactor
Fields in org.apache.hc.core5.reactor with type parameters of type SSLIOSession Modifier and Type Field Description private java.util.concurrent.atomic.AtomicReference<SSLIOSession>
InternalDataChannel. tlsSessionRef
Methods in org.apache.hc.core5.reactor with parameters of type SSLIOSession Modifier and Type Method Description (package private) void
InternalDataChannel. onTLSSessionEnd(SSLIOSession sslSession)
(package private) void
InternalDataChannel. onTLSSessionStart(SSLIOSession sslSession)
-
Uses of SSLIOSession in org.apache.hc.core5.reactor.ssl
Fields in org.apache.hc.core5.reactor.ssl with type parameters of type SSLIOSession Modifier and Type Field Description private Callback<SSLIOSession>
SSLIOSession. sessionEndCallback
private Callback<SSLIOSession>
SSLIOSession. sessionStartCallback
Constructor parameters in org.apache.hc.core5.reactor.ssl with type arguments of type SSLIOSession Constructor Description SSLIOSession(NamedEndpoint targetEndpoint, IOSession session, SSLMode sslMode, javax.net.ssl.SSLContext sslContext, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier, Callback<SSLIOSession> sessionStartCallback, Callback<SSLIOSession> sessionEndCallback, Timeout connectTimeout)
Creates new instance ofSSLIOSession
class.SSLIOSession(NamedEndpoint targetEndpoint, IOSession session, SSLMode sslMode, javax.net.ssl.SSLContext sslContext, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier, Timeout handshakeTimeout, Callback<SSLIOSession> sessionStartCallback, Callback<SSLIOSession> sessionEndCallback, FutureCallback<javax.net.ssl.SSLSession> resultCallback)
Creates new instance ofSSLIOSession
class.
-