Пример #1
0
        public async Task <Peer[]> ListPeers()
        {
            var request  = new ListPeersRequest();
            var response = await lndClient.ListPeersAsync(request);

            return(response.Peers.ToArray());
        }
Пример #2
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListPeersRequest request;

            try
            {
                request = new ListPeersRequest
                {
                    BlockchainPlatformId = BlockchainPlatformId,
                    DisplayName          = DisplayName,
                    OpcRequestId         = OpcRequestId,
                    OpcRetryToken        = OpcRetryToken,
                    SortOrder            = SortOrder,
                    SortBy = SortBy,
                    Page   = Page,
                    Limit  = Limit
                };
                IEnumerable <ListPeersResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.PeerCollection, true);
                }
                if (!ParameterSetName.Equals(AllPageSet) && !ParameterSetName.Equals(LimitSet) && response.OpcNextPage != null)
                {
                    WriteWarning("This operation supports pagination and not all resources were returned. Re-run using the -All option to auto paginate and list all resources.");
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Пример #3
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListPeersRequest request;

            try
            {
                request = new ListPeersRequest
                {
                    BlockchainPlatformId = BlockchainPlatformId,
                    DisplayName          = DisplayName,
                    OpcRequestId         = OpcRequestId,
                    OpcRetryToken        = OpcRetryToken,
                    SortOrder            = SortOrder,
                    SortBy = SortBy,
                    Page   = Page,
                    Limit  = Limit
                };
                IEnumerable <ListPeersResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.PeerCollection, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
 /// <summary>
 /// Creates a new enumerable which will iterate over the responses received from the ListPeers operation. This enumerable
 /// will fetch more data from the server as needed.
 /// </summary>
 /// <param name="request">The request object containing the details to send</param>
 /// <param name="retryConfiguration">The configuration for retrying, may be null</param>
 /// <param name="cancellationToken">The cancellation token object</param>
 /// <returns>The enumerator, which supports a simple iteration over a collection of a specified type</returns>
 public IEnumerable <ListPeersResponse> ListPeersResponseEnumerator(ListPeersRequest request, Common.Retry.RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
 {
     return(new Common.Utils.ResponseEnumerable <ListPeersRequest, ListPeersResponse>(
                response => response.OpcNextPage,
                input =>
     {
         if (!string.IsNullOrEmpty(input))
         {
             request.Page = input;
         }
         return request;
     },
                request => client.ListPeers(request, retryConfiguration, cancellationToken).Result
                ));
 }