All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.neptunegraph.waiters.NeptuneGraphAsyncWaiter Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Neptune Graph module holds the client classes that are used for communicating with Neptune Graph.

There is a newer version: 2.29.39
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.neptunegraph.waiters;

import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ScheduledExecutorService;
import java.util.function.Consumer;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.annotations.Immutable;
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.annotations.ThreadSafe;
import software.amazon.awssdk.core.waiters.WaiterOverrideConfiguration;
import software.amazon.awssdk.core.waiters.WaiterResponse;
import software.amazon.awssdk.services.neptunegraph.NeptuneGraphAsyncClient;
import software.amazon.awssdk.services.neptunegraph.model.GetGraphRequest;
import software.amazon.awssdk.services.neptunegraph.model.GetGraphResponse;
import software.amazon.awssdk.services.neptunegraph.model.GetGraphSnapshotRequest;
import software.amazon.awssdk.services.neptunegraph.model.GetGraphSnapshotResponse;
import software.amazon.awssdk.services.neptunegraph.model.GetImportTaskRequest;
import software.amazon.awssdk.services.neptunegraph.model.GetImportTaskResponse;
import software.amazon.awssdk.services.neptunegraph.model.GetPrivateGraphEndpointRequest;
import software.amazon.awssdk.services.neptunegraph.model.GetPrivateGraphEndpointResponse;
import software.amazon.awssdk.utils.SdkAutoCloseable;

/**
 * Waiter utility class that polls a resource until a desired state is reached or until it is determined that the
 * resource will never enter into the desired state. This can be created using the static {@link #builder()} method
 */
@Generated("software.amazon.awssdk:codegen")
@SdkPublicApi
@ThreadSafe
@Immutable
public interface NeptuneGraphAsyncWaiter extends SdkAutoCloseable {
    /**
     * Polls {@link NeptuneGraphAsyncClient#getGraph} API until the desired condition {@code GraphAvailable} is met, or
     * until it is determined that the resource will never enter into the desired state
     *
     * @param getGraphRequest
     *        the request to be used for polling
     * @return CompletableFuture containing the WaiterResponse. It completes successfully when the resource enters into
     *         a desired state or exceptionally when it is determined that the resource will never enter into the
     *         desired state.
     */
    default CompletableFuture> waitUntilGraphAvailable(GetGraphRequest getGraphRequest) {
        throw new UnsupportedOperationException();
    }

    /**
     * Polls {@link NeptuneGraphAsyncClient#getGraph} API until the desired condition {@code GraphAvailable} is met, or
     * until it is determined that the resource will never enter into the desired state.
     * 

* This is a convenience method to create an instance of the request builder without the need to create one manually * using {@link GetGraphRequest#builder()} * * @param getGraphRequest * The consumer that will configure the request to be used for polling * @return CompletableFuture of the WaiterResponse containing either a response or an exception that has matched * with the waiter success condition */ default CompletableFuture> waitUntilGraphAvailable( Consumer getGraphRequest) { return waitUntilGraphAvailable(GetGraphRequest.builder().applyMutation(getGraphRequest).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getGraph} API until the desired condition {@code GraphAvailable} is met, or * until it is determined that the resource will never enter into the desired state * * @param getGraphRequest * The request to be used for polling * @param overrideConfig * Per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilGraphAvailable(GetGraphRequest getGraphRequest, WaiterOverrideConfiguration overrideConfig) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getGraph} API until the desired condition {@code GraphAvailable} is met, or * until it is determined that the resource will never enter into the desired state. *

* This is a convenience method to create an instance of the request builder and instance of the override config * builder * * @param getGraphRequest * The consumer that will configure the request to be used for polling * @param overrideConfig * The consumer that will configure the per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilGraphAvailable( Consumer getGraphRequest, Consumer overrideConfig) { return waitUntilGraphAvailable(GetGraphRequest.builder().applyMutation(getGraphRequest).build(), WaiterOverrideConfiguration.builder().applyMutation(overrideConfig).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getGraph} API until the desired condition {@code GraphDeleted} is met, or * until it is determined that the resource will never enter into the desired state * * @param getGraphRequest * the request to be used for polling * @return CompletableFuture containing the WaiterResponse. It completes successfully when the resource enters into * a desired state or exceptionally when it is determined that the resource will never enter into the * desired state. */ default CompletableFuture> waitUntilGraphDeleted(GetGraphRequest getGraphRequest) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getGraph} API until the desired condition {@code GraphDeleted} is met, or * until it is determined that the resource will never enter into the desired state. *

* This is a convenience method to create an instance of the request builder without the need to create one manually * using {@link GetGraphRequest#builder()} * * @param getGraphRequest * The consumer that will configure the request to be used for polling * @return CompletableFuture of the WaiterResponse containing either a response or an exception that has matched * with the waiter success condition */ default CompletableFuture> waitUntilGraphDeleted( Consumer getGraphRequest) { return waitUntilGraphDeleted(GetGraphRequest.builder().applyMutation(getGraphRequest).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getGraph} API until the desired condition {@code GraphDeleted} is met, or * until it is determined that the resource will never enter into the desired state * * @param getGraphRequest * The request to be used for polling * @param overrideConfig * Per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilGraphDeleted(GetGraphRequest getGraphRequest, WaiterOverrideConfiguration overrideConfig) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getGraph} API until the desired condition {@code GraphDeleted} is met, or * until it is determined that the resource will never enter into the desired state. *

* This is a convenience method to create an instance of the request builder and instance of the override config * builder * * @param getGraphRequest * The consumer that will configure the request to be used for polling * @param overrideConfig * The consumer that will configure the per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilGraphDeleted( Consumer getGraphRequest, Consumer overrideConfig) { return waitUntilGraphDeleted(GetGraphRequest.builder().applyMutation(getGraphRequest).build(), WaiterOverrideConfiguration.builder().applyMutation(overrideConfig).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getGraphSnapshot} API until the desired condition * {@code GraphSnapshotAvailable} is met, or until it is determined that the resource will never enter into the * desired state * * @param getGraphSnapshotRequest * the request to be used for polling * @return CompletableFuture containing the WaiterResponse. It completes successfully when the resource enters into * a desired state or exceptionally when it is determined that the resource will never enter into the * desired state. */ default CompletableFuture> waitUntilGraphSnapshotAvailable( GetGraphSnapshotRequest getGraphSnapshotRequest) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getGraphSnapshot} API until the desired condition * {@code GraphSnapshotAvailable} is met, or until it is determined that the resource will never enter into the * desired state. *

* This is a convenience method to create an instance of the request builder without the need to create one manually * using {@link GetGraphSnapshotRequest#builder()} * * @param getGraphSnapshotRequest * The consumer that will configure the request to be used for polling * @return CompletableFuture of the WaiterResponse containing either a response or an exception that has matched * with the waiter success condition */ default CompletableFuture> waitUntilGraphSnapshotAvailable( Consumer getGraphSnapshotRequest) { return waitUntilGraphSnapshotAvailable(GetGraphSnapshotRequest.builder().applyMutation(getGraphSnapshotRequest).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getGraphSnapshot} API until the desired condition * {@code GraphSnapshotAvailable} is met, or until it is determined that the resource will never enter into the * desired state * * @param getGraphSnapshotRequest * The request to be used for polling * @param overrideConfig * Per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilGraphSnapshotAvailable( GetGraphSnapshotRequest getGraphSnapshotRequest, WaiterOverrideConfiguration overrideConfig) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getGraphSnapshot} API until the desired condition * {@code GraphSnapshotAvailable} is met, or until it is determined that the resource will never enter into the * desired state. *

* This is a convenience method to create an instance of the request builder and instance of the override config * builder * * @param getGraphSnapshotRequest * The consumer that will configure the request to be used for polling * @param overrideConfig * The consumer that will configure the per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilGraphSnapshotAvailable( Consumer getGraphSnapshotRequest, Consumer overrideConfig) { return waitUntilGraphSnapshotAvailable(GetGraphSnapshotRequest.builder().applyMutation(getGraphSnapshotRequest).build(), WaiterOverrideConfiguration.builder().applyMutation(overrideConfig).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getGraphSnapshot} API until the desired condition * {@code GraphSnapshotDeleted} is met, or until it is determined that the resource will never enter into the * desired state * * @param getGraphSnapshotRequest * the request to be used for polling * @return CompletableFuture containing the WaiterResponse. It completes successfully when the resource enters into * a desired state or exceptionally when it is determined that the resource will never enter into the * desired state. */ default CompletableFuture> waitUntilGraphSnapshotDeleted( GetGraphSnapshotRequest getGraphSnapshotRequest) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getGraphSnapshot} API until the desired condition * {@code GraphSnapshotDeleted} is met, or until it is determined that the resource will never enter into the * desired state. *

* This is a convenience method to create an instance of the request builder without the need to create one manually * using {@link GetGraphSnapshotRequest#builder()} * * @param getGraphSnapshotRequest * The consumer that will configure the request to be used for polling * @return CompletableFuture of the WaiterResponse containing either a response or an exception that has matched * with the waiter success condition */ default CompletableFuture> waitUntilGraphSnapshotDeleted( Consumer getGraphSnapshotRequest) { return waitUntilGraphSnapshotDeleted(GetGraphSnapshotRequest.builder().applyMutation(getGraphSnapshotRequest).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getGraphSnapshot} API until the desired condition * {@code GraphSnapshotDeleted} is met, or until it is determined that the resource will never enter into the * desired state * * @param getGraphSnapshotRequest * The request to be used for polling * @param overrideConfig * Per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilGraphSnapshotDeleted( GetGraphSnapshotRequest getGraphSnapshotRequest, WaiterOverrideConfiguration overrideConfig) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getGraphSnapshot} API until the desired condition * {@code GraphSnapshotDeleted} is met, or until it is determined that the resource will never enter into the * desired state. *

* This is a convenience method to create an instance of the request builder and instance of the override config * builder * * @param getGraphSnapshotRequest * The consumer that will configure the request to be used for polling * @param overrideConfig * The consumer that will configure the per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilGraphSnapshotDeleted( Consumer getGraphSnapshotRequest, Consumer overrideConfig) { return waitUntilGraphSnapshotDeleted(GetGraphSnapshotRequest.builder().applyMutation(getGraphSnapshotRequest).build(), WaiterOverrideConfiguration.builder().applyMutation(overrideConfig).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getImportTask} API until the desired condition {@code ImportTaskCancelled} * is met, or until it is determined that the resource will never enter into the desired state * * @param getImportTaskRequest * the request to be used for polling * @return CompletableFuture containing the WaiterResponse. It completes successfully when the resource enters into * a desired state or exceptionally when it is determined that the resource will never enter into the * desired state. */ default CompletableFuture> waitUntilImportTaskCancelled( GetImportTaskRequest getImportTaskRequest) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getImportTask} API until the desired condition {@code ImportTaskCancelled} * is met, or until it is determined that the resource will never enter into the desired state. *

* This is a convenience method to create an instance of the request builder without the need to create one manually * using {@link GetImportTaskRequest#builder()} * * @param getImportTaskRequest * The consumer that will configure the request to be used for polling * @return CompletableFuture of the WaiterResponse containing either a response or an exception that has matched * with the waiter success condition */ default CompletableFuture> waitUntilImportTaskCancelled( Consumer getImportTaskRequest) { return waitUntilImportTaskCancelled(GetImportTaskRequest.builder().applyMutation(getImportTaskRequest).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getImportTask} API until the desired condition {@code ImportTaskCancelled} * is met, or until it is determined that the resource will never enter into the desired state * * @param getImportTaskRequest * The request to be used for polling * @param overrideConfig * Per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilImportTaskCancelled( GetImportTaskRequest getImportTaskRequest, WaiterOverrideConfiguration overrideConfig) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getImportTask} API until the desired condition {@code ImportTaskCancelled} * is met, or until it is determined that the resource will never enter into the desired state. *

* This is a convenience method to create an instance of the request builder and instance of the override config * builder * * @param getImportTaskRequest * The consumer that will configure the request to be used for polling * @param overrideConfig * The consumer that will configure the per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilImportTaskCancelled( Consumer getImportTaskRequest, Consumer overrideConfig) { return waitUntilImportTaskCancelled(GetImportTaskRequest.builder().applyMutation(getImportTaskRequest).build(), WaiterOverrideConfiguration.builder().applyMutation(overrideConfig).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getImportTask} API until the desired condition {@code ImportTaskSuccessful} * is met, or until it is determined that the resource will never enter into the desired state * * @param getImportTaskRequest * the request to be used for polling * @return CompletableFuture containing the WaiterResponse. It completes successfully when the resource enters into * a desired state or exceptionally when it is determined that the resource will never enter into the * desired state. */ default CompletableFuture> waitUntilImportTaskSuccessful( GetImportTaskRequest getImportTaskRequest) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getImportTask} API until the desired condition {@code ImportTaskSuccessful} * is met, or until it is determined that the resource will never enter into the desired state. *

* This is a convenience method to create an instance of the request builder without the need to create one manually * using {@link GetImportTaskRequest#builder()} * * @param getImportTaskRequest * The consumer that will configure the request to be used for polling * @return CompletableFuture of the WaiterResponse containing either a response or an exception that has matched * with the waiter success condition */ default CompletableFuture> waitUntilImportTaskSuccessful( Consumer getImportTaskRequest) { return waitUntilImportTaskSuccessful(GetImportTaskRequest.builder().applyMutation(getImportTaskRequest).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getImportTask} API until the desired condition {@code ImportTaskSuccessful} * is met, or until it is determined that the resource will never enter into the desired state * * @param getImportTaskRequest * The request to be used for polling * @param overrideConfig * Per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilImportTaskSuccessful( GetImportTaskRequest getImportTaskRequest, WaiterOverrideConfiguration overrideConfig) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getImportTask} API until the desired condition {@code ImportTaskSuccessful} * is met, or until it is determined that the resource will never enter into the desired state. *

* This is a convenience method to create an instance of the request builder and instance of the override config * builder * * @param getImportTaskRequest * The consumer that will configure the request to be used for polling * @param overrideConfig * The consumer that will configure the per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilImportTaskSuccessful( Consumer getImportTaskRequest, Consumer overrideConfig) { return waitUntilImportTaskSuccessful(GetImportTaskRequest.builder().applyMutation(getImportTaskRequest).build(), WaiterOverrideConfiguration.builder().applyMutation(overrideConfig).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getPrivateGraphEndpoint} API until the desired condition * {@code PrivateGraphEndpointAvailable} is met, or until it is determined that the resource will never enter into * the desired state * * @param getPrivateGraphEndpointRequest * the request to be used for polling * @return CompletableFuture containing the WaiterResponse. It completes successfully when the resource enters into * a desired state or exceptionally when it is determined that the resource will never enter into the * desired state. */ default CompletableFuture> waitUntilPrivateGraphEndpointAvailable( GetPrivateGraphEndpointRequest getPrivateGraphEndpointRequest) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getPrivateGraphEndpoint} API until the desired condition * {@code PrivateGraphEndpointAvailable} is met, or until it is determined that the resource will never enter into * the desired state. *

* This is a convenience method to create an instance of the request builder without the need to create one manually * using {@link GetPrivateGraphEndpointRequest#builder()} * * @param getPrivateGraphEndpointRequest * The consumer that will configure the request to be used for polling * @return CompletableFuture of the WaiterResponse containing either a response or an exception that has matched * with the waiter success condition */ default CompletableFuture> waitUntilPrivateGraphEndpointAvailable( Consumer getPrivateGraphEndpointRequest) { return waitUntilPrivateGraphEndpointAvailable(GetPrivateGraphEndpointRequest.builder() .applyMutation(getPrivateGraphEndpointRequest).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getPrivateGraphEndpoint} API until the desired condition * {@code PrivateGraphEndpointAvailable} is met, or until it is determined that the resource will never enter into * the desired state * * @param getPrivateGraphEndpointRequest * The request to be used for polling * @param overrideConfig * Per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilPrivateGraphEndpointAvailable( GetPrivateGraphEndpointRequest getPrivateGraphEndpointRequest, WaiterOverrideConfiguration overrideConfig) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getPrivateGraphEndpoint} API until the desired condition * {@code PrivateGraphEndpointAvailable} is met, or until it is determined that the resource will never enter into * the desired state. *

* This is a convenience method to create an instance of the request builder and instance of the override config * builder * * @param getPrivateGraphEndpointRequest * The consumer that will configure the request to be used for polling * @param overrideConfig * The consumer that will configure the per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilPrivateGraphEndpointAvailable( Consumer getPrivateGraphEndpointRequest, Consumer overrideConfig) { return waitUntilPrivateGraphEndpointAvailable( GetPrivateGraphEndpointRequest.builder().applyMutation(getPrivateGraphEndpointRequest).build(), WaiterOverrideConfiguration.builder().applyMutation(overrideConfig).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getPrivateGraphEndpoint} API until the desired condition * {@code PrivateGraphEndpointDeleted} is met, or until it is determined that the resource will never enter into the * desired state * * @param getPrivateGraphEndpointRequest * the request to be used for polling * @return CompletableFuture containing the WaiterResponse. It completes successfully when the resource enters into * a desired state or exceptionally when it is determined that the resource will never enter into the * desired state. */ default CompletableFuture> waitUntilPrivateGraphEndpointDeleted( GetPrivateGraphEndpointRequest getPrivateGraphEndpointRequest) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getPrivateGraphEndpoint} API until the desired condition * {@code PrivateGraphEndpointDeleted} is met, or until it is determined that the resource will never enter into the * desired state. *

* This is a convenience method to create an instance of the request builder without the need to create one manually * using {@link GetPrivateGraphEndpointRequest#builder()} * * @param getPrivateGraphEndpointRequest * The consumer that will configure the request to be used for polling * @return CompletableFuture of the WaiterResponse containing either a response or an exception that has matched * with the waiter success condition */ default CompletableFuture> waitUntilPrivateGraphEndpointDeleted( Consumer getPrivateGraphEndpointRequest) { return waitUntilPrivateGraphEndpointDeleted(GetPrivateGraphEndpointRequest.builder() .applyMutation(getPrivateGraphEndpointRequest).build()); } /** * Polls {@link NeptuneGraphAsyncClient#getPrivateGraphEndpoint} API until the desired condition * {@code PrivateGraphEndpointDeleted} is met, or until it is determined that the resource will never enter into the * desired state * * @param getPrivateGraphEndpointRequest * The request to be used for polling * @param overrideConfig * Per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilPrivateGraphEndpointDeleted( GetPrivateGraphEndpointRequest getPrivateGraphEndpointRequest, WaiterOverrideConfiguration overrideConfig) { throw new UnsupportedOperationException(); } /** * Polls {@link NeptuneGraphAsyncClient#getPrivateGraphEndpoint} API until the desired condition * {@code PrivateGraphEndpointDeleted} is met, or until it is determined that the resource will never enter into the * desired state. *

* This is a convenience method to create an instance of the request builder and instance of the override config * builder * * @param getPrivateGraphEndpointRequest * The consumer that will configure the request to be used for polling * @param overrideConfig * The consumer that will configure the per request override configuration for waiters * @return WaiterResponse containing either a response or an exception that has matched with the waiter success * condition */ default CompletableFuture> waitUntilPrivateGraphEndpointDeleted( Consumer getPrivateGraphEndpointRequest, Consumer overrideConfig) { return waitUntilPrivateGraphEndpointDeleted( GetPrivateGraphEndpointRequest.builder().applyMutation(getPrivateGraphEndpointRequest).build(), WaiterOverrideConfiguration.builder().applyMutation(overrideConfig).build()); } /** * Create a builder that can be used to configure and create a {@link NeptuneGraphAsyncWaiter}. * * @return a builder */ static Builder builder() { return DefaultNeptuneGraphAsyncWaiter.builder(); } /** * Create an instance of {@link NeptuneGraphAsyncWaiter} with the default configuration. *

* A default {@link NeptuneGraphAsyncClient} will be created to poll resources. It is recommended to share a * single instance of the waiter created via this method. If it is not desirable to share a waiter instance, invoke * {@link #close()} to release the resources once the waiter is not needed. * * @return an instance of {@link NeptuneGraphAsyncWaiter} */ static NeptuneGraphAsyncWaiter create() { return DefaultNeptuneGraphAsyncWaiter.builder().build(); } interface Builder { /** * Sets a custom {@link ScheduledExecutorService} that will be used to schedule async polling attempts *

* This 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 * * @param executorService * the executorService to set * @return a reference to this object so that method calls can be chained together. */ Builder scheduledExecutorService(ScheduledExecutorService executorService); /** * Defines overrides to the default SDK waiter configuration that should be used for waiters created from this * builder * * @param overrideConfiguration * the override configuration to set * @return a reference to this object so that method calls can be chained together. */ Builder overrideConfiguration(WaiterOverrideConfiguration overrideConfiguration); /** * This is a convenient method to pass the override configuration without the need to create an instance * manually via {@link WaiterOverrideConfiguration#builder()} * * @param overrideConfiguration * The consumer that will configure the overrideConfiguration * @return a reference to this object so that method calls can be chained together. * @see #overrideConfiguration(WaiterOverrideConfiguration) */ default Builder overrideConfiguration(Consumer overrideConfiguration) { WaiterOverrideConfiguration.Builder builder = WaiterOverrideConfiguration.builder(); overrideConfiguration.accept(builder); return overrideConfiguration(builder.build()); } /** * Sets a custom {@link NeptuneGraphAsyncClient} that will be used to poll the resource *

* This 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 * * @param client * the client to send the request * @return a reference to this object so that method calls can be chained together. */ Builder client(NeptuneGraphAsyncClient client); /** * Builds an instance of {@link NeptuneGraphAsyncWaiter} based on the configurations supplied to this builder * * @return An initialized {@link NeptuneGraphAsyncWaiter} */ NeptuneGraphAsyncWaiter build(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy