Example #1
0
 public static ICompletable RepeatUntil(this ICompletable source, Func <bool> shouldRepeat)
 {
     return(Concat(InfiniteRepeat <ICompletable> .PredicateRepeatUntil(source, shouldRepeat)));
 }
Example #2
0
 public static ICompletable Repeat(this ICompletable source, long times)
 {
     return(Concat(InfiniteRepeat <ICompletable> .RepeatFinite(source, times)));
 }