Class HttpLoadBalancerFactory.DefaultFilterableStreamingHttpLoadBalancedConnection
- All Implemented Interfaces:
LoadBalancedConnection,RequestConcurrencyController,ReservableRequestConcurrencyController,ScoreSupplier,AsyncCloseable,ListenableAsyncCloseable,GracefulAutoCloseable,FilterableReservedStreamingHttpConnection,FilterableStreamingHttpConnection,FilterableStreamingHttpLoadBalancedConnection,ReservedStreamingHttpConnection,StreamingHttpConnection,StreamingHttpRequester,StreamingHttpRequestFactory,AutoCloseable
- Enclosing interface:
- HttpLoadBalancerFactory<ResolvedAddress>
FilterableStreamingHttpLoadBalancedConnection.-
Nested Class Summary
Nested classes/interfaces inherited from interface io.servicetalk.client.api.RequestConcurrencyController
RequestConcurrencyController.Result -
Constructor Summary
ConstructorsConstructorDescriptionDefaultFilterableStreamingHttpLoadBalancedConnection(FilterableStreamingHttpConnection delegate, ReservableRequestConcurrencyController controller) Create a new instance without support forscore().DefaultFilterableStreamingHttpLoadBalancedConnection(FilterableStreamingHttpConnection delegate, ReservableRequestConcurrencyController controller, ScoreSupplier scoreSupplier) Create a new instance. -
Method Summary
Modifier and TypeMethodDescriptionConvert thisStreamingHttpConnectionto theBlockingHttpConnectionAPI.Convert thisStreamingHttpConnectionto theBlockingStreamingHttpConnectionAPI.Convert thisStreamingHttpConnectionto theHttpConnectionAPI.Used to close/shutdown a resource.Used to close/shutdown a resource, similar toAsyncCloseable.closeAsync(), but attempts to cleanup state before abruptly closing.Get theHttpConnectionContext.Get theHttpExecutionContextused during construction of this object.Get aStreamingHttpResponseFactory.newRequest(HttpRequestMethod method, String requestTarget) Create a newHttpRequestFactory.onClose()Returns aCompletablethat is notified once theListenableAsyncCloseablewas closed.Returns aCompletablethat is notified when closing begins.Must be called (and subscribed to) to signify the reservation has completed afterReservableRequestConcurrencyController.tryReserve().request(StreamingHttpRequest request) Send arequest.voidMust be called afterRequestConcurrencyController.tryRequest()to signify the request has completed.intscore()Returns the current score of a resource.toString()<T> Publisher<? extends T>transportEventStream(HttpEventKey<T> eventKey) Returns aPublisherthat gives the current value of a transport event as well as subsequent changes to the event value as long as thePublisherSource.Subscriberhas expressed enough demand.Attempts to reserve a connection for a single request, needs to be followed byRequestConcurrencyController.requestFinished().booleanAttempts to reserve a connection for exclusive use untilReservableRequestConcurrencyController.releaseAsync()is called.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface io.servicetalk.http.api.StreamingHttpRequester
close, closeGracefully
-
Constructor Details
-
DefaultFilterableStreamingHttpLoadBalancedConnection
public DefaultFilterableStreamingHttpLoadBalancedConnection(FilterableStreamingHttpConnection delegate, ReservableRequestConcurrencyController controller) Create a new instance without support forscore().- Parameters:
delegate-FilterableStreamingHttpConnectionto delegate tocontroller-ReservableRequestConcurrencyControllerto control concurrent access to the delegate
-
DefaultFilterableStreamingHttpLoadBalancedConnection
public DefaultFilterableStreamingHttpLoadBalancedConnection(FilterableStreamingHttpConnection delegate, ReservableRequestConcurrencyController controller, ScoreSupplier scoreSupplier) Create a new instance.- Parameters:
delegate-FilterableStreamingHttpConnectionto delegate tocontroller-ReservableRequestConcurrencyControllerto control concurrent access to the delegatescoreSupplier-ScoreSupplierto query thescore()
-
-
Method Details
-
score
public int score()Description copied from interface:ScoreSupplierReturns the current score of a resource.LoadBalancers prefer resources with a higher score.- Specified by:
scorein interfaceScoreSupplier- Returns:
- the score
-
connectionContext
Description copied from interface:FilterableStreamingHttpConnectionGet theHttpConnectionContext.- Specified by:
connectionContextin interfaceFilterableStreamingHttpConnection- Returns:
- the
HttpConnectionContext.
-
transportEventStream
Description copied from interface:FilterableStreamingHttpConnectionReturns aPublisherthat gives the current value of a transport event as well as subsequent changes to the event value as long as thePublisherSource.Subscriberhas expressed enough demand.This is designed for events produced by the transport, and consumed by filters interested in transport behavior which is not directly involved in the data path.
- Specified by:
transportEventStreamin interfaceFilterableStreamingHttpConnection- Type Parameters:
T- Type of the event value.- Parameters:
eventKey- Name of the event to fetch.- Returns:
Publisherfor the event values.
-
request
Description copied from interface:StreamingHttpRequesterSend arequest.- Specified by:
requestin interfaceStreamingHttpRequester- Parameters:
request- the request to send.- Returns:
- The response.
-
executionContext
Description copied from interface:StreamingHttpRequesterGet theHttpExecutionContextused during construction of this object.Note that the
ExecutionContext.ioExecutor()will not necessarily be associated with a specific thread unless that was how this object was built.- Specified by:
executionContextin interfaceStreamingHttpRequester- Returns:
- the
HttpExecutionContextused during construction of this object.
-
httpResponseFactory
Description copied from interface:StreamingHttpRequesterGet aStreamingHttpResponseFactory.- Specified by:
httpResponseFactoryin interfaceStreamingHttpRequester- Returns:
- a
StreamingHttpResponseFactory.
-
onClose
Description copied from interface:ListenableAsyncCloseableReturns aCompletablethat is notified once theListenableAsyncCloseablewas closed.- Specified by:
onClosein interfaceListenableAsyncCloseable- Returns:
- the
Completablethat is notified on close.
-
onClosing
Description copied from interface:ListenableAsyncCloseableReturns aCompletablethat is notified when closing begins.Closing begin might be when a close operation is initiated locally (e.g. subscribing to
AsyncCloseable.closeAsync()) or it could also be a transport event received from a remote peer (e.g. read aconnection: closeheader).For backwards compatibility this method maybe functionally equivalent to
ListenableAsyncCloseable.onClose(). Therefore, provides a best-effort leading edge notification of closing, but may fall back to notification on trailing edge.The goal of this method is often to notify asap when closing so this method may not be offloaded and care must be taken to avoid blocking if subscribing to the return
Completable.- Specified by:
onClosingin interfaceListenableAsyncCloseable- Returns:
- a
Completablethat is notified when closing begins.
-
closeAsync
Description copied from interface:AsyncCloseableUsed to close/shutdown a resource.- Specified by:
closeAsyncin interfaceAsyncCloseable- Returns:
- A
Completablethat is notified once the close is complete.
-
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().- Specified by:
closeAsyncGracefullyin interfaceAsyncCloseable- Returns:
- A
Completablethat is notified once the close is complete.
-
newRequest
Description copied from interface:StreamingHttpRequestFactoryCreate a newHttpRequestFactory.- Specified by:
newRequestin interfaceStreamingHttpRequestFactory- Parameters:
method- TheHttpRequestMethod.requestTarget- The request target.- Returns:
- a new
HttpRequestFactory.
-
tryRequest
Description copied from interface:RequestConcurrencyControllerAttempts to reserve a connection for a single request, needs to be followed byRequestConcurrencyController.requestFinished().- Specified by:
tryRequestin interfaceLoadBalancedConnection- Specified by:
tryRequestin interfaceRequestConcurrencyController- Returns:
RequestConcurrencyController.Result.Acceptedif this connection is available and reserved for performing a single request.
-
requestFinished
public void requestFinished()Description copied from interface:RequestConcurrencyControllerMust be called afterRequestConcurrencyController.tryRequest()to signify the request has completed. This method should be called no more than once for each call toRequestConcurrencyController.tryRequest().Generally called from a
Publisher.beforeFinally(Runnable)after aRequestConcurrencyController.tryRequest().- Specified by:
requestFinishedin interfaceLoadBalancedConnection- Specified by:
requestFinishedin interfaceRequestConcurrencyController
-
tryReserve
public boolean tryReserve()Description copied from interface:ReservableRequestConcurrencyControllerAttempts to reserve a connection for exclusive use untilReservableRequestConcurrencyController.releaseAsync()is called.- Specified by:
tryReservein interfaceLoadBalancedConnection- Specified by:
tryReservein interfaceReservableRequestConcurrencyController- Returns:
trueif this connection is available and reserved for performing a single request.
-
releaseAsync
Description copied from interface:ReservableRequestConcurrencyControllerMust be called (and subscribed to) to signify the reservation has completed afterReservableRequestConcurrencyController.tryReserve().- Specified by:
releaseAsyncin interfaceFilterableReservedStreamingHttpConnection- Specified by:
releaseAsyncin interfaceFilterableStreamingHttpLoadBalancedConnection- Specified by:
releaseAsyncin interfaceLoadBalancedConnection- Specified by:
releaseAsyncin interfaceReservableRequestConcurrencyController- Returns:
- a
Completablefor the release.
-
asConnection
Description copied from interface:StreamingHttpConnectionConvert thisStreamingHttpConnectionto theHttpConnectionAPI.This API is provided for convenience. It is recommended that filters are implemented using the
StreamingHttpConnectionasynchronous API for maximum portability.- Specified by:
asConnectionin interfaceFilterableStreamingHttpLoadBalancedConnection- Specified by:
asConnectionin interfaceReservedStreamingHttpConnection- Specified by:
asConnectionin interfaceStreamingHttpConnection- Returns:
- a
HttpConnectionrepresentation of thisStreamingHttpConnection.
-
asBlockingStreamingConnection
Description copied from interface:StreamingHttpConnectionConvert thisStreamingHttpConnectionto theBlockingStreamingHttpConnectionAPI.This API is provided for convenience for a more familiar sequential programming model. It is recommended that filters are implemented using the
StreamingHttpConnectionasynchronous API for maximum portability.- Specified by:
asBlockingStreamingConnectionin interfaceFilterableStreamingHttpLoadBalancedConnection- Specified by:
asBlockingStreamingConnectionin interfaceReservedStreamingHttpConnection- Specified by:
asBlockingStreamingConnectionin interfaceStreamingHttpConnection- Returns:
- a
BlockingStreamingHttpConnectionrepresentation of thisStreamingHttpConnection.
-
asBlockingConnection
Description copied from interface:StreamingHttpConnectionConvert thisStreamingHttpConnectionto theBlockingHttpConnectionAPI.This API is provided for convenience for a more familiar sequential programming model. It is recommended that filters are implemented using the
StreamingHttpConnectionasynchronous API for maximum portability.- Specified by:
asBlockingConnectionin interfaceFilterableStreamingHttpLoadBalancedConnection- Specified by:
asBlockingConnectionin interfaceReservedStreamingHttpConnection- Specified by:
asBlockingConnectionin interfaceStreamingHttpConnection- Returns:
- a
BlockingHttpConnectionrepresentation of thisStreamingHttpConnection.
-
toString
-