Amazon.DynamoDBv2.AmazonDynamoDBClient.BeginBatchGetItem C# (CSharp) Method

BeginBatchGetItem() public method

Initiates the asynchronous execution of the BatchGetItem operation.
public BeginBatchGetItem ( BatchGetItemRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.DynamoDBv2.Model.BatchGetItemRequest Container for the necessary parameters to execute the BatchGetItem operation on AmazonDynamoDBClient.
callback AsyncCallback An AsyncCallback delegate that is invoked when the operation completes.
state object A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.
return IAsyncResult
        public IAsyncResult BeginBatchGetItem(BatchGetItemRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new BatchGetItemRequestMarshaller();
            var unmarshaller = BatchGetItemResponseUnmarshaller.Instance;

            return BeginInvoke<BatchGetItemRequest>(request, marshaller, unmarshaller,
                callback, state);
        }