HomeSort by relevance Sort by last modified time
    Searched defs:ListFeatures (Results 1 - 8 of 8) sorted by null

  /external/grpc-grpc/examples/python/multiplex/
route_guide_pb2_grpc.py 22 self.ListFeatures = channel.unary_stream(
23 '/routeguide.RouteGuide/ListFeatures',
55 def ListFeatures(self, request, context):
95 'ListFeatures': grpc.unary_stream_rpc_method_handler(
96 servicer.ListFeatures,
multiplex_server.py 80 def ListFeatures(self, request, context):
  /external/grpc-grpc/examples/python/route_guide/
route_guide_pb2_grpc.py 22 self.ListFeatures = channel.unary_stream(
23 '/routeguide.RouteGuide/ListFeatures',
55 def ListFeatures(self, request, context):
95 'ListFeatures': grpc.unary_stream_rpc_method_handler(
96 servicer.ListFeatures,
route_guide_server.py 72 def ListFeatures(self, request, context):
  /external/grpc-grpc/examples/csharp/RouteGuide/RouteGuideClient/
Program.cs 70 /// Server-streaming example. Calls listFeatures with a rectangle of interest. Prints each response feature as it arrives.
72 public async Task ListFeatures(int lowLat, int lowLon, int hiLat, int hiLon)
76 Log("*** ListFeatures: lowLat={0} lowLon={1} hiLat={2} hiLon={3}", lowLat, lowLon, hiLat,
85 using (var call = client.ListFeatures(request))
228 client.ListFeatures(400000000, -750000000, 420000000, -730000000).Wait();
  /external/grpc-grpc/examples/csharp/RouteGuide/RouteGuideServer/
RouteGuideImpl.cs 54 public override async Task ListFeatures(Rectangle request, IServerStreamWriter<Feature> responseStream, ServerCallContext context)
  /external/grpc-grpc/examples/cpp/route_guide/
route_guide_client.cc 86 void ListFeatures() {
99 stub_->ListFeatures(&context, rect));
108 std::cout << "ListFeatures rpc succeeded." << std::endl;
110 std::cout << "ListFeatures rpc failed." << std::endl;
228 std::cout << "-------------- ListFeatures --------------" << std::endl;
229 guide.ListFeatures();
  /external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/
RouteGuideGrpc.cs 49 "ListFeatures",
104 public virtual global::System.Threading.Tasks.Task ListFeatures(global::Routeguide.Rectangle request, grpc::IServerStreamWriter<global::Routeguide.Feature> responseStream, grpc::ServerCallContext context)
240 public virtual grpc::AsyncServerStreamingCall<global::Routeguide.Feature> ListFeatures(global::Routeguide.Rectangle request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
242 return ListFeatures(request, new grpc::CallOptions(headers, deadline, cancellationToken));
255 public virtual grpc::AsyncServerStreamingCall<global::Routeguide.Feature> ListFeatures(global::Routeguide.Rectangle request, grpc::CallOptions options)
324 .AddMethod(__Method_ListFeatures, serviceImpl.ListFeatures)

Completed in 61 milliseconds