Add CombineLatest

This commit is contained in:
neuecc
2020-05-22 02:25:36 +09:00
parent 21dc83c641
commit 2b87cadba3
7 changed files with 10802 additions and 2 deletions

View File

@@ -93,10 +93,16 @@ namespace NetCoreSandbox
var channel = Channel.CreateSingleConsumerUnbounded<int>();
// Observable.Range(1,10).CombineLatest(
var cts = new CancellationTokenSource();
var token = cts.Token;
FooAsync(token).ForEachAsync(x => { }, token);
// Observable.Range(1,10).CombineLatest(
}