|
|
@ -41,6 +41,11 @@ namespace Grpc.Core |
|
|
|
/// (<c>MoveNext</c> will return <c>false</c>) and the <c>CancellationToken</c> |
|
|
|
/// (<c>MoveNext</c> will return <c>false</c>) and the <c>CancellationToken</c> |
|
|
|
/// associated with the call will be cancelled to signal the failure. |
|
|
|
/// associated with the call will be cancelled to signal the failure. |
|
|
|
/// </para> |
|
|
|
/// </para> |
|
|
|
|
|
|
|
/// <para> |
|
|
|
|
|
|
|
/// <c>MoveNext()</c> operations can be cancelled via a cancellation token. Cancelling |
|
|
|
|
|
|
|
/// an individual read operation has the same effect as cancelling the entire call |
|
|
|
|
|
|
|
/// (which will also result in the read operation returning prematurely). |
|
|
|
|
|
|
|
/// </para> |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
/// <typeparam name="T">The message type.</typeparam> |
|
|
|
/// <typeparam name="T">The message type.</typeparam> |
|
|
|
public interface IAsyncStreamReader<T> : IAsyncEnumerator<T> |
|
|
|
public interface IAsyncStreamReader<T> : IAsyncEnumerator<T> |
|
|
|