Introduce AbstractAsyncSelector
#6097
Open
+410
−188
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation:
AbstractEndpointSelector
is a useful abstract which allows users to select andEndpoint
asynchronously only by implementingAbstractEndpointSelector#selectNow
. However, the current implementation has limitations in that 1) OnlyEndpoint
can be selected 2) It is difficult to customize the timing when the pending futures must be reconsidered for completion.While working on the introduction of an
XdsPreprocessor
#6096, I found it is useful to be able to select a value asynchronously in the following locations:When a request is executed, the request must wait until a
ListenerSnapshot
is fetchedarmeria/xds/src/main/java/com/linecorp/armeria/xds/client/endpoint/XdsPreprocessor.java
Line 60 in 6bbc2ac
The
XdsLoadBalancer
which selects an endpoint must be refreshed either when the encompassedEndpointGroup
is updated or when the local cluster is updated.armeria/xds/src/main/java/com/linecorp/armeria/xds/client/endpoint/UpdatableLoadBalancer.java
Line 110 in 6bbc2ac
For ease of implementation and maintainability, I propose that
AbstractAsyncSelector
is abstracted out ofAbstractEndpointSelector
. Since it is unclear whether this abstraction is useful for other situations, the class is located in theinternal
package.Modifications:
AbstractEndpointSelector
toAbstractAsyncSelector
AbstractEndpointSelector
contains an internalAbstractAsyncSelector
implementationSelectionTimeoutTest#select_unlimited
to the internal package since it relies on visibility ofListenableFuture#timeoutFuture
Result: