Interface IClientStreamWriter<T> (2.48.0)

public interface IClientStreamWriter<in T> : IAsyncStreamWriter<T>

Client-side writable stream of messages with Close capability.

Namespace

Grpc.Core

Assembly

Grpc.Core.Api.dll

Type Parameter

NameDescription
T

The message type.

Methods

CompleteAsync()

Task CompleteAsync()

Completes/closes the stream. Can only be called once there is no pending write. No writes should follow calling this.

Returns
TypeDescription
Task