Searched refs:callHandlers (Results 1 – 3 of 3) sorted by relevance
/third_party/grpc/src/csharp/Grpc.Core/Internal/ |
D | ServerServiceDefinitionExtensions.cs | 42 …readonly Dictionary<string, IServerCallHandler> callHandlers = new Dictionary<string, IServerCallH… field in Grpc.Core.Internal.ServerServiceDefinitionExtensions.DefaultServiceBinder 46 return new ReadOnlyDictionary<string, IServerCallHandler>(this.callHandlers); in GetCallHandlers() 53 callHandlers.Add(method.FullName, ServerCalls.UnaryCall(method, handler)); in AddMethod() 60 callHandlers.Add(method.FullName, ServerCalls.ClientStreamingCall(method, handler)); in AddMethod() 67 callHandlers.Add(method.FullName, ServerCalls.ServerStreamingCall(method, handler)); in AddMethod() 74 callHandlers.Add(method.FullName, ServerCalls.DuplexStreamingCall(method, handler)); in AddMethod()
|
/third_party/grpc/src/csharp/Grpc.Core/ |
D | Server.cs | 50 …readonly Dictionary<string, IServerCallHandler> callHandlers = new Dictionary<string, IServerCallH… field in Grpc.Core.Server 270 callHandlers.Add(entry.Key, entry.Value); in AddServiceDefinitionInternal() 350 if (!callHandlers.TryGetValue(newRpc.Method, out callHandler)) in HandleCallAsync()
|
/third_party/python/Lib/logging/ |
D | __init__.py | 1634 self.callHandlers(record) 1680 def callHandlers(self, record): member in Logger
|