Interface DsqlAsyncWaiter.Builder
-
- Enclosing interface:
- DsqlAsyncWaiter
public static interface DsqlAsyncWaiter.Builder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DsqlAsyncWaiterbuild()Builds an instance ofDsqlAsyncWaiterbased on the configurations supplied to this builderDsqlAsyncWaiter.Builderclient(DsqlAsyncClient client)Sets a customDsqlAsyncClientthat will be used to poll the resourcedefault DsqlAsyncWaiter.BuilderoverrideConfiguration(Consumer<WaiterOverrideConfiguration.Builder> overrideConfiguration)This is a convenient method to pass the override configuration without the need to create an instance manually viaWaiterOverrideConfiguration.builder()DsqlAsyncWaiter.BuilderoverrideConfiguration(WaiterOverrideConfiguration overrideConfiguration)Defines overrides to the default SDK waiter configuration that should be used for waiters created from this builderDsqlAsyncWaiter.BuilderscheduledExecutorService(ScheduledExecutorService executorService)Sets a customScheduledExecutorServicethat will be used to schedule async polling attempts
-
-
-
Method Detail
-
scheduledExecutorService
DsqlAsyncWaiter.Builder scheduledExecutorService(ScheduledExecutorService executorService)
Sets a customScheduledExecutorServicethat will be used to schedule async polling attemptsThis executorService must be closed by the caller when it is ready to be disposed. The SDK will not close the executorService when the waiter is closed
- Parameters:
executorService- the executorService to set- Returns:
- a reference to this object so that method calls can be chained together.
-
overrideConfiguration
DsqlAsyncWaiter.Builder overrideConfiguration(WaiterOverrideConfiguration overrideConfiguration)
Defines overrides to the default SDK waiter configuration that should be used for waiters created from this builder- Parameters:
overrideConfiguration- the override configuration to set- Returns:
- a reference to this object so that method calls can be chained together.
-
overrideConfiguration
default DsqlAsyncWaiter.Builder overrideConfiguration(Consumer<WaiterOverrideConfiguration.Builder> overrideConfiguration)
This is a convenient method to pass the override configuration without the need to create an instance manually viaWaiterOverrideConfiguration.builder()- Parameters:
overrideConfiguration- The consumer that will configure the overrideConfiguration- Returns:
- a reference to this object so that method calls can be chained together.
- See Also:
overrideConfiguration(WaiterOverrideConfiguration)
-
client
DsqlAsyncWaiter.Builder client(DsqlAsyncClient client)
Sets a customDsqlAsyncClientthat will be used to poll the resourceThis SDK client must be closed by the caller when it is ready to be disposed. The SDK will not close the client when the waiter is closed
- Parameters:
client- the client to send the request- Returns:
- a reference to this object so that method calls can be chained together.
-
build
DsqlAsyncWaiter build()
Builds an instance ofDsqlAsyncWaiterbased on the configurations supplied to this builder- Returns:
- An initialized
DsqlAsyncWaiter
-
-