Package com.oracle.bmc.limits
Class QuotasWaiters
- java.lang.Object
-
- com.oracle.bmc.limits.QuotasWaiters
-
@Generated(value="OracleSDKGenerator", comments="API Version: 20181025") public class QuotasWaiters extends Object
Collection of helper methods to produceWaiter
s for different resources of Quotas.The default configuration used is defined by
com.oracle.bmc.waiter.Waiters.Waiters#DEFAULT_POLLING_WAITER
.
-
-
Constructor Summary
Constructors Constructor Description QuotasWaiters(ExecutorService executorService, Quotas client)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Waiter<GetQuotaRequest,GetQuotaResponse>
forQuota(GetQuotaRequest request, Quota.LifecycleState... targetStates)
Creates a newWaiter
using the default configuration.Waiter<GetQuotaRequest,GetQuotaResponse>
forQuota(GetQuotaRequest request, Quota.LifecycleState targetState, TerminationStrategy terminationStrategy, DelayStrategy delayStrategy)
Creates a newWaiter
using the provided configuration.Waiter<GetQuotaRequest,GetQuotaResponse>
forQuota(GetQuotaRequest request, TerminationStrategy terminationStrategy, DelayStrategy delayStrategy, Quota.LifecycleState... targetStates)
Creates a newWaiter
using the provided configuration.
-
-
-
Constructor Detail
-
QuotasWaiters
public QuotasWaiters(ExecutorService executorService, Quotas client)
-
-
Method Detail
-
forQuota
public Waiter<GetQuotaRequest,GetQuotaResponse> forQuota(GetQuotaRequest request, Quota.LifecycleState... targetStates)
Creates a newWaiter
using the default configuration.- Parameters:
request
- the request to sendtargetStates
- the desired states to wait for. If multiple states are provided then the waiter will return once the resource reaches any of the provided states- Returns:
- a new Waiter instance
-
forQuota
public Waiter<GetQuotaRequest,GetQuotaResponse> forQuota(GetQuotaRequest request, Quota.LifecycleState targetState, TerminationStrategy terminationStrategy, DelayStrategy delayStrategy)
Creates a newWaiter
using the provided configuration.- Parameters:
request
- the request to sendtargetState
- the desired state to wait forterminationStrategy
- theTerminationStrategy
to usedelayStrategy
- theDelayStrategy
to use- Returns:
- a new com.oracle.bmc.waiter.Waiter instance
-
forQuota
public Waiter<GetQuotaRequest,GetQuotaResponse> forQuota(GetQuotaRequest request, TerminationStrategy terminationStrategy, DelayStrategy delayStrategy, Quota.LifecycleState... targetStates)
Creates a newWaiter
using the provided configuration.- Parameters:
request
- the request to sendterminationStrategy
- theTerminationStrategy
to usedelayStrategy
- theDelayStrategy
to usetargetStates
- the desired states to wait for. The waiter will return once the resource reaches any of the provided states- Returns:
- a new com.oracle.bmc.waiter.Waiter instance
-
-