コード例 #1
0
ファイル: Completable.cs プロジェクト: lanicon/RxAdvancedFlow
 public static ICompletable MergeDelayError(this IPublisher <ICompletable> sources, int maxConcurrency = int.MaxValue)
 {
     return(sources.FlatMap(c => c.ToPublisher <object>(), true, maxConcurrency).ToCompletable());
 }
コード例 #2
0
ファイル: Single.cs プロジェクト: lanicon/RxAdvancedFlow
 public static IPublisher <T> MergeDelayError <T>(this IPublisher <ISingle <T> > sources, int maxConcurrency = int.MaxValue)
 {
     return(sources.FlatMap(s => s.ToPublisher(), true, maxConcurrency));
 }