Skip to content

Instantly share code, notes, and snippets.

@Odonno
Created May 4, 2020 19:03
Show Gist options
  • Save Odonno/ee85581f5fb329cad770184e6372b5b1 to your computer and use it in GitHub Desktop.
Save Odonno/ee85581f5fb329cad770184e6372b5b1 to your computer and use it in GitHub Desktop.
ClientToServer.cs
// Read the client-to-server stream
private async Task SetCount(IAsyncEnumerable<int> stream)
{
await foreach (int item in stream.WithCancellation(Context.ConnectionAborted))
{
Console.WriteLine(item);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment