From a3b659c3ae248beeda86f7057dbb27460f2626c0 Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Thu, 5 Feb 2015 18:24:02 -0800 Subject: [PATCH] added comment --- src/csharp/GrpcCore/Internal/ServerWritingObserver.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/csharp/GrpcCore/Internal/ServerWritingObserver.cs b/src/csharp/GrpcCore/Internal/ServerWritingObserver.cs index e18eb9e9f17..2b46e9c53d6 100644 --- a/src/csharp/GrpcCore/Internal/ServerWritingObserver.cs +++ b/src/csharp/GrpcCore/Internal/ServerWritingObserver.cs @@ -3,6 +3,10 @@ using Google.GRPC.Core.Internal; namespace Google.GRPC.Core.Internal { + /// + /// Observer that writes all arriving messages to a call abstraction (in blocking fashion) + /// and then halfcloses the call. Used for server-side call handling. + /// internal class ServerWritingObserver : IObserver { readonly AsyncCall call;