Flags for write operations.
Namespace: Grpc.CoreAssembly: Grpc.Core (in Grpc.Core.dll) Version: 0.7.0.0
Syntax[FlagsAttribute]
public enum WriteFlags
<FlagsAttribute>
Public Enumeration WriteFlags
[FlagsAttribute]
public enum class WriteFlags
[<FlagsAttribute>]
type WriteFlags
Members
| Member name | Value | Description |
---|
| BufferHint | 1 |
Hint that the write may be buffered and need not go out on the wire immediately.
gRPC is free to buffer the message until the next non-buffered
write, or until write stream completion, but it need not buffer completely or at all.
|
| NoCompress | 2 |
Force compression to be disabled for a particular write.
|
See Also