-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAsyncEnumerable.cs
45 lines (39 loc) · 1.43 KB
/
AsyncEnumerable.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
class AsyncEnumerable : IRunnable
{
public async Task Run()
{
using var anotherTokenSource = new CancellationTokenSource();
//anotherTokenSource.CancelAfter(2400);
using var tokenSource = new CancellationTokenSource();
tokenSource.CancelAfter(3200);
await foreach (var delay in ReadDelays(anotherTokenSource.Token)
.WithCancellation(tokenSource.Token) // calls GetAsyncEnumerator(token)
.ConfigureAwait(false))
{
Console.WriteLine($"await Task.Delay({delay})");
await Task.Delay(delay)
.ConfigureAwait(false);
}
}
async IAsyncEnumerable<int> ReadDelays([EnumeratorCancellation] CancellationToken token = default)
{
using (var stream = File.OpenRead("AsyncEnumerable.txt"))
using (var reader = new StreamReader(stream))
{
string line;
while ((line = await reader.ReadLineAsync()
.ConfigureAwait(false)) != null && !token.IsCancellationRequested)
{
Console.WriteLine(" Read next line");
yield return Convert.ToInt32(line);
}
}
Console.WriteLine(" Done enumerating");
}
}