aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core/IServerStreamWriter.cs
diff options
context:
space:
mode:
authorGravatar Julien Boeuf <jboeuf@google.com>2015-05-21 10:06:10 -0700
committerGravatar Julien Boeuf <jboeuf@google.com>2015-05-21 10:06:10 -0700
commitbd024536e5dbc0f2a20210a6ee8438bcf393793c (patch)
treedb34b07ee87275dec8db8a7c0669383fc0d40128 /src/csharp/Grpc.Core/IServerStreamWriter.cs
parent83b029726b3b110a79e7432427e1050371b26dce (diff)
parent72b0f3a99e82d58778846278cde2770ffdadc278 (diff)
Merge branch 'master' of github.com:grpc/grpc into server_auth_context
Diffstat (limited to 'src/csharp/Grpc.Core/IServerStreamWriter.cs')
-rw-r--r--src/csharp/Grpc.Core/IServerStreamWriter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Core/IServerStreamWriter.cs b/src/csharp/Grpc.Core/IServerStreamWriter.cs
index 199a585a3f..9f3af59109 100644
--- a/src/csharp/Grpc.Core/IServerStreamWriter.cs
+++ b/src/csharp/Grpc.Core/IServerStreamWriter.cs
@@ -43,7 +43,7 @@ namespace Grpc.Core
/// A writable stream of messages that is used in server-side handlers.
/// </summary>
public interface IServerStreamWriter<T> : IAsyncStreamWriter<T>
- where T : class
{
+ // TODO(jtattermusch): consider just using IAsyncStreamWriter instead of this interface.
}
}