Show / Hide Table of Contents

Interface IClientStreamWriter<T>

Client-side writable stream of messages with Close capability.

Inherited Members
IAsyncStreamWriter<T>.WriteAsync(T)
IAsyncStreamWriter<T>.WriteOptions
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
System.Threading.Tasks.Task
Back to top