Method | Description | |
---|---|---|
GetFeature ( int lat, int lon ) : void |
Blocking unary call example. Calls GetFeature and prints the response.
|
|
ListFeatures ( int lowLat, int lowLon, int hiLat, int hiLon ) : System.Threading.Tasks.Task |
Server-streaming example. Calls listFeatures with a rectangle of interest. Prints each response feature as it arrives.
|
|
RecordRoute ( List |
Client-streaming example. Sends numPoints randomly chosen points from features with a variable delay in between. Prints the statistics when they are sent from the server.
|
|
RouteChat ( ) : System.Threading.Tasks.Task |
Bi-directional streaming example. Send some chat messages, and print any chat messages that are sent from the server.
|
|
RouteGuideClient ( Routeguide.RouteGuide client ) : Grpc.Core |
Method | Description | |
---|---|---|
Log ( string s ) : void | ||
NewNote ( string message, int lat, int lon ) : RouteNote |
public GetFeature ( int lat, int lon ) : void | ||
lat | int | |
lon | int | |
return | void |
public ListFeatures ( int lowLat, int lowLon, int hiLat, int hiLon ) : System.Threading.Tasks.Task | ||
lowLat | int | |
lowLon | int | |
hiLat | int | |
hiLon | int | |
return | System.Threading.Tasks.Task |
public RecordRoute ( List |
||
features | List |
|
numPoints | int | |
return | System.Threading.Tasks.Task |
public RouteChat ( ) : System.Threading.Tasks.Task | ||
return | System.Threading.Tasks.Task |
public RouteGuideClient ( Routeguide.RouteGuide client ) : Grpc.Core | ||
client | Routeguide.RouteGuide | |
return | Grpc.Core |