예제 #1
0
        IEnumerable <ListTableMetadataResponse> IPaginator <ListTableMetadataResponse> .Paginate()
        {
            if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
            {
                throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
            }
            var nextToken = _request.NextToken;
            ListTableMetadataResponse response;

            do
            {
                _request.NextToken = nextToken;
                response           = _client.ListTableMetadata(_request);
                nextToken          = response.NextToken;
                yield return(response);
            }while (nextToken != null);
        }
예제 #2
0
 IEnumerable<ListTableMetadataResponse> IPaginator<ListTableMetadataResponse>.Paginate()
 {
     if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
     {
         throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
     }
     PaginatorUtils.SetUserAgentAdditionOnRequest(_request);
     var nextToken = _request.NextToken;
     ListTableMetadataResponse response;
     do
     {
         _request.NextToken = nextToken;
         response = _client.ListTableMetadata(_request);
         nextToken = response.NextToken;
         yield return response;
     }
     while (!string.IsNullOrEmpty(nextToken));
 }
예제 #3
0
 private Amazon.Athena.Model.ListTableMetadataResponse CallAWSServiceOperation(IAmazonAthena client, Amazon.Athena.Model.ListTableMetadataRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Athena", "ListTableMetadata");
     try
     {
         #if DESKTOP
         return(client.ListTableMetadata(request));
         #elif CORECLR
         return(client.ListTableMetadataAsync(request).GetAwaiter().GetResult());
         #else
                 #error "Unknown build edition"
         #endif
     }
     catch (AmazonServiceException exc)
     {
         var webException = exc.InnerException as System.Net.WebException;
         if (webException != null)
         {
             throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException);
         }
         throw;
     }
 }