Package io.servicetalk.http.api
Class DelegatingHttpServiceContext
- java.lang.Object
-
- io.servicetalk.http.api.HttpServiceContext
-
- io.servicetalk.http.api.DelegatingHttpServiceContext
-
- All Implemented Interfaces:
AsyncCloseable,ListenableAsyncCloseable,HttpConnectionContext,ConnectionContext,ConnectionInfo
public class DelegatingHttpServiceContext extends HttpServiceContext
An implementation ofHttpServiceContextthat delegates all calls to a providedHttpServiceContext. Any method can be overridden to change this default behavior.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.servicetalk.transport.api.ConnectionInfo
ConnectionInfo.Protocol
-
-
Constructor Summary
Constructors Constructor Description DelegatingHttpServiceContext(HttpServiceContext other)New instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CompletablecloseAsync()Used to close/shutdown a resource.CompletablecloseAsyncGracefully()Used to close/shutdown a resource, similar toAsyncCloseable.closeAsync(), but attempts to cleanup state before abruptly closing.HttpExecutionContextexecutionContext()Get theExecutionContextfor thisConnectionInfo.java.net.SocketAddresslocalAddress()TheSocketAddressto which the associated connection is bound.CompletableonClose()Returns aCompletablethat is notified once theListenableAsyncCloseablewas closed.HttpProtocolVersionprotocol()Get theConnectionInfo.Protocolfor thisConnectionInfo.java.net.SocketAddressremoteAddress()TheSocketAddressto which the associated connection is connected.<T> TsocketOption(java.net.SocketOption<T> option)javax.net.ssl.SSLSessionsslSession()Get theSSLSessionfor this connection.-
Methods inherited from class io.servicetalk.http.api.HttpServiceContext
blockingStreamingResponseFactory, headersFactory, responseFactory, streamingResponseFactory
-
-
-
-
Constructor Detail
-
DelegatingHttpServiceContext
public DelegatingHttpServiceContext(HttpServiceContext other)
New instance.- Parameters:
other-HttpServiceContextto delegate all calls.
-
-
Method Detail
-
localAddress
public java.net.SocketAddress localAddress()
Description copied from interface:ConnectionInfoTheSocketAddressto which the associated connection is bound.- Returns:
- The
SocketAddressto which the associated connection is bound.
-
remoteAddress
public java.net.SocketAddress remoteAddress()
Description copied from interface:ConnectionInfoTheSocketAddressto which the associated connection is connected.- Returns:
- The
SocketAddressto which the associated connection is connected.
-
sslSession
@Nullable public javax.net.ssl.SSLSession sslSession()
Description copied from interface:ConnectionInfoGet theSSLSessionfor this connection.- Returns:
- The
SSLSessionif SSL/TLS is enabled, ornullotherwise.
-
executionContext
public HttpExecutionContext executionContext()
Description copied from interface:ConnectionInfoGet theExecutionContextfor thisConnectionInfo.The
ExecutionContext.ioExecutor()will represent the thread responsible for IO for thisConnectionInfo. Note that this maybe different that what was used to create this object because at this time a specificIoExecutorhas been selected.- Returns:
- the
ExecutionContextfor thisConnectionInfo.
-
socketOption
@Nullable public <T> T socketOption(java.net.SocketOption<T> option)
Description copied from interface:ConnectionInfo- Type Parameters:
T- the type of theSocketOptionvalue.- Parameters:
option-SocketOptionto get.- Returns:
- the
SocketOptionvalue of typeTfor thisConnectionInfoornullif thisSocketOptionis not supported by thisConnectionInfo. - See Also:
StandardSocketOptions,ServiceTalkSocketOptions
-
protocol
public HttpProtocolVersion protocol()
Description copied from interface:ConnectionInfoGet theConnectionInfo.Protocolfor thisConnectionInfo.- Returns:
- the
ConnectionInfo.Protocolfor thisConnectionInfo.
-
onClose
public Completable onClose()
Description copied from interface:ListenableAsyncCloseableReturns aCompletablethat is notified once theListenableAsyncCloseablewas closed.- Returns:
- the
Completablethat is notified on close.
-
closeAsync
public Completable closeAsync()
Description copied from interface:AsyncCloseableUsed to close/shutdown a resource.- Returns:
- A
Completablethat is notified once the close is complete.
-
closeAsyncGracefully
public Completable closeAsyncGracefully()
Description copied from interface:AsyncCloseableUsed to close/shutdown a resource, similar toAsyncCloseable.closeAsync(), but attempts to cleanup state before abruptly closing. This provides a hint that implementations can use to stop accepting new work and finish in flight work. This method is implemented on a "best effort" basis and may be equivalent toAsyncCloseable.closeAsync().Note: Implementations may or may not apply a timeout for this operation to complete, if a caller does not want to wait indefinitely, and are unsure if the implementation applies a timeout, it is advisable to apply a timeout and force a call to
AsyncCloseable.closeAsync().- Returns:
- A
Completablethat is notified once the close is complete.
-
-