/// <summary> /// Constructs a client wrapper for the ConnectionService service, with the specified gRPC client and settings. /// </summary> /// <param name="grpcClient">The underlying gRPC client.</param> /// <param name="settings">The base <see cref="ConnectionServiceSettings"/> used within this client.</param> public ConnectionServiceClientImpl(ConnectionService.ConnectionServiceClient grpcClient, ConnectionServiceSettings settings) { GrpcClient = grpcClient; ConnectionServiceSettings effectiveSettings = settings ?? ConnectionServiceSettings.GetDefault(); gaxgrpc::ClientHelper clientHelper = new gaxgrpc::ClientHelper(effectiveSettings); _callListConnections = clientHelper.BuildApiCall <ListConnectionsRequest, ListConnectionsResponse>(grpcClient.ListConnectionsAsync, grpcClient.ListConnections, effectiveSettings.ListConnectionsSettings).WithGoogleRequestParam("parent", request => request.Parent); Modify_ApiCall(ref _callListConnections); Modify_ListConnectionsApiCall(ref _callListConnections); OnConstruction(grpcClient, effectiveSettings, clientHelper); }
partial void OnCopy(ConnectionServiceSettings existing);
private ConnectionServiceSettings(ConnectionServiceSettings existing) : base(existing) { gax::GaxPreconditions.CheckNotNull(existing, nameof(existing)); ListConnectionsSettings = existing.ListConnectionsSettings; OnCopy(existing); }
partial void OnConstruction(ConnectionService.ConnectionServiceClient grpcClient, ConnectionServiceSettings effectiveSettings, gaxgrpc::ClientHelper clientHelper);
/// <summary> /// Creates a <see cref="ConnectionServiceClient"/> which uses the specified call invoker for remote operations. /// </summary> /// <param name="callInvoker"> /// The <see cref="grpccore::CallInvoker"/> for remote operations. Must not be null. /// </param> /// <param name="settings">Optional <see cref="ConnectionServiceSettings"/>.</param> /// <returns>The created <see cref="ConnectionServiceClient"/>.</returns> internal static ConnectionServiceClient Create(grpccore::CallInvoker callInvoker, ConnectionServiceSettings settings = null) { gax::GaxPreconditions.CheckNotNull(callInvoker, nameof(callInvoker)); grpcinter::Interceptor interceptor = settings?.Interceptor; if (interceptor != null) { callInvoker = grpcinter::CallInvokerExtensions.Intercept(callInvoker, interceptor); } ConnectionService.ConnectionServiceClient grpcClient = new ConnectionService.ConnectionServiceClient(callInvoker); return(new ConnectionServiceClientImpl(grpcClient, settings)); }