migrate Greeter and Routeguide to 0.14.0 API

pull/6550/head
Jan Tattermusch 9 years ago
parent 1aa52a074a
commit 0bbbb3240e
  1. 4
      examples/csharp/helloworld/GreeterServer/Program.cs
  2. 4
      examples/csharp/route_guide/RouteGuideClient/Program.cs
  3. 11
      examples/csharp/route_guide/RouteGuideServer/RouteGuideImpl.cs

@ -34,10 +34,10 @@ using Helloworld;
namespace GreeterServer namespace GreeterServer
{ {
class GreeterImpl : Greeter.IGreeter class GreeterImpl : Greeter.GreeterBase
{ {
// Server side handler of the SayHello RPC // Server side handler of the SayHello RPC
public Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context) public override Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context)
{ {
return Task.FromResult(new HelloReply { Message = "Hello " + request.Name }); return Task.FromResult(new HelloReply { Message = "Hello " + request.Name });
} }

@ -43,9 +43,9 @@ namespace Routeguide
/// </summary> /// </summary>
public class RouteGuideClient public class RouteGuideClient
{ {
readonly RouteGuide.IRouteGuideClient client; readonly RouteGuide.RouteGuideClient client;
public RouteGuideClient(RouteGuide.IRouteGuideClient client) public RouteGuideClient(RouteGuide.RouteGuideClient client)
{ {
this.client = client; this.client = client;
} }

@ -35,6 +35,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Grpc.Core;
using Grpc.Core.Utils; using Grpc.Core.Utils;
namespace Routeguide namespace Routeguide
@ -42,7 +43,7 @@ namespace Routeguide
/// <summary> /// <summary>
/// Example implementation of RouteGuide server. /// Example implementation of RouteGuide server.
/// </summary> /// </summary>
public class RouteGuideImpl : RouteGuide.IRouteGuide public class RouteGuideImpl : RouteGuide.RouteGuideBase
{ {
readonly List<Feature> features; readonly List<Feature> features;
readonly object myLock = new object(); readonly object myLock = new object();
@ -57,7 +58,7 @@ namespace Routeguide
/// Gets the feature at the requested point. If no feature at that location /// Gets the feature at the requested point. If no feature at that location
/// exists, an unnammed feature is returned at the provided location. /// exists, an unnammed feature is returned at the provided location.
/// </summary> /// </summary>
public Task<Feature> GetFeature(Point request, Grpc.Core.ServerCallContext context) public override Task<Feature> GetFeature(Point request, ServerCallContext context)
{ {
return Task.FromResult(CheckFeature(request)); return Task.FromResult(CheckFeature(request));
} }
@ -65,7 +66,7 @@ namespace Routeguide
/// <summary> /// <summary>
/// Gets all features contained within the given bounding rectangle. /// Gets all features contained within the given bounding rectangle.
/// </summary> /// </summary>
public async Task ListFeatures(Rectangle request, Grpc.Core.IServerStreamWriter<Feature> responseStream, Grpc.Core.ServerCallContext context) public override async Task ListFeatures(Rectangle request, IServerStreamWriter<Feature> responseStream, ServerCallContext context)
{ {
var responses = features.FindAll( (feature) => feature.Exists() && request.Contains(feature.Location) ); var responses = features.FindAll( (feature) => feature.Exists() && request.Contains(feature.Location) );
foreach (var response in responses) foreach (var response in responses)
@ -78,7 +79,7 @@ namespace Routeguide
/// Gets a stream of points, and responds with statistics about the "trip": number of points, /// Gets a stream of points, and responds with statistics about the "trip": number of points,
/// number of known features visited, total distance traveled, and total time spent. /// number of known features visited, total distance traveled, and total time spent.
/// </summary> /// </summary>
public async Task<RouteSummary> RecordRoute(Grpc.Core.IAsyncStreamReader<Point> requestStream, Grpc.Core.ServerCallContext context) public override async Task<RouteSummary> RecordRoute(IAsyncStreamReader<Point> requestStream, ServerCallContext context)
{ {
int pointCount = 0; int pointCount = 0;
int featureCount = 0; int featureCount = 0;
@ -117,7 +118,7 @@ namespace Routeguide
/// Receives a stream of message/location pairs, and responds with a stream of all previous /// Receives a stream of message/location pairs, and responds with a stream of all previous
/// messages at each of those locations. /// messages at each of those locations.
/// </summary> /// </summary>
public async Task RouteChat(Grpc.Core.IAsyncStreamReader<RouteNote> requestStream, Grpc.Core.IServerStreamWriter<RouteNote> responseStream, Grpc.Core.ServerCallContext context) public override async Task RouteChat(IAsyncStreamReader<RouteNote> requestStream, IServerStreamWriter<RouteNote> responseStream, ServerCallContext context)
{ {
while (await requestStream.MoveNext()) while (await requestStream.MoveNext())
{ {

Loading…
Cancel
Save