Home
last modified time | relevance | path

Searched refs:routeNotes (Results 1 – 2 of 2) sorted by relevance

/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuideServer/
DRouteGuideImpl.cs35 … readonly Dictionary<Point, List<RouteNote>> routeNotes = new Dictionary<Point, List<RouteNote>>(); field in Routeguide.RouteGuideImpl
127 if (!routeNotes.TryGetValue(location, out notes)) { in AddNoteForLocation()
129 routeNotes.Add(location, notes); in AddNoteForLocation()
/external/grpc-grpc-java/examples/src/main/java/io/grpc/examples/routeguide/
DRouteGuideServer.java114 private final ConcurrentMap<Point, List<RouteNote>> routeNotes = field in RouteGuideServer.RouteGuideService
247 List<RouteNote> prevNotes = routeNotes.putIfAbsent(location, notes);