Ejemplo n.º 1
0
 /// <summary>
 /// UserListAsync gets a list of all users in async
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
 /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
 /// <param name="cancellationToken">An optional token for canceling the call.</param>
 /// <returns>The response received from the server.</returns>
 public async Task <AuthUserListResponse> UserListAsync(AuthUserListRequest request,
                                                        Grpc.Core.Metadata headers          = null, DateTime?deadline = null,
                                                        CancellationToken cancellationToken = default)
 {
     return(await CallEtcdAsync(async (connection) => await connection._authClient
                                .UserListAsync(request, headers, deadline, cancellationToken)).ConfigureAwait(false));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// UserList gets a list of all users
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
 /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
 /// <param name="cancellationToken">An optional token for canceling the call.</param>
 /// <returns>The response received from the server.</returns>
 public AuthUserListResponse UserList(AuthUserListRequest request, Grpc.Core.Metadata headers = null,
                                      DateTime?deadline = null,
                                      CancellationToken cancellationToken = default)
 {
     return(CallEtcd((connection) => connection._authClient
                     .UserList(request, headers, deadline, cancellationToken)));
 }
Ejemplo n.º 3
0
        /// <summary>
        /// UserListAsync gets a list of all users in async
        /// </summary>
        /// <param name="request"></param>
        /// <returns></returns>
        public async Task <AuthUserListResponse> UserListAsync(AuthUserListRequest request, Metadata headers = null)
        {
            AuthUserListResponse response = new AuthUserListResponse();
            bool success    = false;
            int  retryCount = 0;

            while (!success)
            {
                try
                {
                    response = await _balancer.GetConnection().authClient.UserListAsync(request, headers);

                    success = true;
                }
                catch (RpcException ex) when(ex.StatusCode == StatusCode.Unavailable)
                {
                    retryCount++;
                    if (retryCount >= _balancer._numNodes)
                    {
                        throw ex;
                    }
                }
            }
            return(response);
        }
Ejemplo n.º 4
0
        /// <summary>
        /// UserListAsync gets a list of all users in async
        /// </summary>
        /// <param name="request"></param>
        /// <returns></returns>
        public async Task <AuthUserListResponse> UserListAsync(AuthUserListRequest request, Metadata headers = null)
        {
            AuthUserListResponse response = new AuthUserListResponse();

            response = await _balancer.GetConnection().authClient.UserListAsync(request, headers);

            return(response);
        }
Ejemplo n.º 5
0
        /// <summary>
        /// UserList gets a list of all users
        /// </summary>
        /// <param name="request"></param>
        /// <returns></returns>
        public AuthUserListResponse UserList(AuthUserListRequest request, Metadata headers = null)
        {
            AuthUserListResponse response = new AuthUserListResponse();

            response = _balancer.GetConnection().authClient.UserList(request, headers);


            return(response);
        }
Ejemplo n.º 6
0
        /// <summary>
        /// UserListAsync gets a list of all users in async
        /// </summary>
        /// <param name="request"></param>
        /// <returns></returns>
        public async Task <AuthUserListResponse> UserListAsync(AuthUserListRequest request)
        {
            AuthUserListResponse response = new AuthUserListResponse();

            try
            {
                response = await _authClient.UserListAsync(request, _headers);
            }
            catch (RpcException ex)
            {
                ResetConnection(ex);
                throw;
            }
            catch
            {
                throw;
            }
            return(response);
        }
Ejemplo n.º 7
0
        /// <summary>
        /// UserList gets a list of all users
        /// </summary>
        /// <param name="request"></param>
        /// <returns></returns>
        public AuthUserListResponse UserList(AuthUserListRequest request)
        {
            AuthUserListResponse response = new AuthUserListResponse();

            try
            {
                response = _authClient.UserList(request, _headers);
            }
            catch (RpcException ex)
            {
                ResetConnection(ex);
                throw;
            }
            catch
            {
                throw;
            }
            return(response);
        }