Hello, LiveClient.StreamAsync is very confusing in examples and docs/description.
Stream records as an async enumerable
Must be something like:
Stream records as an async enumerable unless client is stopped or cancellationToken canceled.
In main page examples this:
await foreach (var record in client.StreamAsync()) { }
is very confusing :( The following questions arise:
- Is this code necessary to retrieve the data or not?
- Will this code end when there is no more data?
- Why is it there in this form anyway? :)
To figure all this out, I had to study the source code...
Hello,
LiveClient.StreamAsyncis very confusing in examples and docs/description.Must be something like:
In main page examples this:
is very confusing :( The following questions arise:
To figure all this out, I had to study the source code...