/// <summary> /// Constructs a client wrapper for the PredictionService service, with the specified gRPC client and settings. /// </summary> /// <param name="grpcClient">The underlying gRPC client.</param> /// <param name="settings">The base <see cref="PredictionServiceSettings"/> used within this client.</param> public PredictionServiceClientImpl(PredictionService.PredictionServiceClient grpcClient, PredictionServiceSettings settings) { GrpcClient = grpcClient; PredictionServiceSettings effectiveSettings = settings ?? PredictionServiceSettings.GetDefault(); gaxgrpc::ClientHelper clientHelper = new gaxgrpc::ClientHelper(effectiveSettings); _callPredict = clientHelper.BuildApiCall <PredictRequest, PredictResponse>(grpcClient.PredictAsync, grpcClient.Predict, effectiveSettings.PredictSettings).WithGoogleRequestParam("endpoint", request => request.Endpoint); Modify_ApiCall(ref _callPredict); Modify_PredictApiCall(ref _callPredict); OnConstruction(grpcClient, effectiveSettings, clientHelper); }
partial void OnCopy(PredictionServiceSettings existing);
partial void OnConstruction(PredictionService.PredictionServiceClient grpcClient, PredictionServiceSettings effectiveSettings, gaxgrpc::ClientHelper clientHelper);
private PredictionServiceSettings(PredictionServiceSettings existing) : base(existing) { gax::GaxPreconditions.CheckNotNull(existing, nameof(existing)); PredictSettings = existing.PredictSettings; OnCopy(existing); }
/// <summary> /// Creates a <see cref="PredictionServiceClient"/> 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="PredictionServiceSettings"/>.</param> /// <returns>The created <see cref="PredictionServiceClient"/>.</returns> internal static PredictionServiceClient Create(grpccore::CallInvoker callInvoker, PredictionServiceSettings settings = null) { gax::GaxPreconditions.CheckNotNull(callInvoker, nameof(callInvoker)); grpcinter::Interceptor interceptor = settings?.Interceptor; if (interceptor != null) { callInvoker = grpcinter::CallInvokerExtensions.Intercept(callInvoker, interceptor); } PredictionService.PredictionServiceClient grpcClient = new PredictionService.PredictionServiceClient(callInvoker); return(new PredictionServiceClientImpl(grpcClient, settings)); }