Interface IClientStreamWriter<T>
Client-side writable stream of messages with Close capability.
Namespace: Grpc.Core
Assembly: Grpc.Core.Api.dll
Syntax
public interface IClientStreamWriter<T> : IAsyncStreamWriter<T>
Type Parameters
Name | Description |
---|---|
T | The message type. |
Methods
CompleteAsync()
Completes/closes the stream. Can only be called once there is no pending write. No writes should follow calling this.
Declaration
Task CompleteAsync()
Returns
Type | Description |
---|---|
Task |