/// <summary>
        /// Creates a <see cref="RoutesClient"/> 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="RoutesSettings"/>.</param>
        /// <returns>The created <see cref="RoutesClient"/>.</returns>
        internal static RoutesClient Create(grpccore::CallInvoker callInvoker, RoutesSettings settings = null)
        {
            gax::GaxPreconditions.CheckNotNull(callInvoker, nameof(callInvoker));
            grpcinter::Interceptor interceptor = settings?.Interceptor;

            if (interceptor != null)
            {
                callInvoker = grpcinter::CallInvokerExtensions.Intercept(callInvoker, interceptor);
            }
            Routes.RoutesClient grpcClient = new Routes.RoutesClient(callInvoker);
            return(new RoutesClientImpl(grpcClient, settings));
        }
        /// <summary>
        /// Constructs a client wrapper for the Routes service, with the specified gRPC client and settings.
        /// </summary>
        /// <param name="grpcClient">The underlying gRPC client.</param>
        /// <param name="settings">The base <see cref="RoutesSettings"/> used within this client.</param>
        public RoutesClientImpl(Routes.RoutesClient grpcClient, RoutesSettings settings)
        {
            GrpcClient = grpcClient;
            RoutesSettings        effectiveSettings = settings ?? RoutesSettings.GetDefault();
            gaxgrpc::ClientHelper clientHelper      = new gaxgrpc::ClientHelper(effectiveSettings);

            _callDelete = clientHelper.BuildApiCall <DeleteRouteRequest, Operation>(grpcClient.DeleteAsync, grpcClient.Delete, effectiveSettings.DeleteSettings).WithGoogleRequestParam("project", request => request.Project).WithGoogleRequestParam("route", request => request.Route);
            Modify_ApiCall(ref _callDelete);
            Modify_DeleteApiCall(ref _callDelete);
            _callGet = clientHelper.BuildApiCall <GetRouteRequest, Route>(grpcClient.GetAsync, grpcClient.Get, effectiveSettings.GetSettings).WithGoogleRequestParam("project", request => request.Project).WithGoogleRequestParam("route", request => request.Route);
            Modify_ApiCall(ref _callGet);
            Modify_GetApiCall(ref _callGet);
            _callInsert = clientHelper.BuildApiCall <InsertRouteRequest, Operation>(grpcClient.InsertAsync, grpcClient.Insert, effectiveSettings.InsertSettings).WithGoogleRequestParam("project", request => request.Project);
            Modify_ApiCall(ref _callInsert);
            Modify_InsertApiCall(ref _callInsert);
            _callList = clientHelper.BuildApiCall <ListRoutesRequest, RouteList>(grpcClient.ListAsync, grpcClient.List, effectiveSettings.ListSettings).WithGoogleRequestParam("project", request => request.Project);
            Modify_ApiCall(ref _callList);
            Modify_ListApiCall(ref _callList);
            OnConstruction(grpcClient, effectiveSettings, clientHelper);
        }
示例#3
0
        static void Main(string[] args)
        {
            Channel channel = new Channel("127.0.0.1:5001", ChannelCredentials.Insecure);
            var     client  = new Stations.StationsClient(channel);
            var     rclient = new Routes.RoutesClient(channel);
            var     reply   = client.GetUpcomingTrains(new GetUpcomingTrainsRequest()
            {
                Station = Station.GroveStreet
            });

            Console.WriteLine(reply.ToString());
            Console.WriteLine();

            var reply2 = client.GetStation(new GetStationRequest()
            {
                Station = Station.GroveStreet
            });

            Console.WriteLine(reply2.ToString());
            Console.WriteLine();

            var reply3 = client.ListStations(new ListStationsRequest());

            Console.WriteLine(reply3.ToString());
            Console.WriteLine();

            var reply4 = rclient.ListRoutes(new ListRoutesRequest());

            Console.WriteLine(reply4.ToString());
            Console.WriteLine();

            var reply5 = rclient.GetRoute(new GetRouteRequest()
            {
                Route = Route.Jsq33
            });

            Console.WriteLine(reply5.ToString());
            Console.WriteLine();

            channel.ShutdownAsync().Wait();
        }
 partial void OnConstruction(Routes.RoutesClient grpcClient, RoutesSettings effectiveSettings, gaxgrpc::ClientHelper clientHelper);