Amazon.DynamoDBv2.DataModel.BatchGet.ExecuteAsync C# (CSharp) Метод

ExecuteAsync() публичный Метод

Initiates the asynchronous execution of the Execute operation.
public ExecuteAsync ( AmazonDynamoDBCallback callback, AsyncOptions asyncOptions = null ) : void
callback AmazonDynamoDBCallback The callback that will be invoked when the asynchronous operation completes.
asyncOptions Amazon.Runtime.AsyncOptions An instance of AsyncOptions that specifies how the async method should be executed.
Результат void
        public void ExecuteAsync(AmazonDynamoDBCallback callback, AsyncOptions asyncOptions = null)
        {
            asyncOptions = asyncOptions ?? new AsyncOptions();
            DynamoDBAsyncExecutor.ExecuteAsync(
                () => { ExecuteHelper(true); },
                asyncOptions,
                callback);
        }