Esempio n. 1
0
 /// <summary>
 /// Keeps retrying the computation, until the scheduler expires, or the predicate returns false
 /// </summary>
 /// <param name="schedule">Scheduler strategy for retrying</param>
 /// <param name="ma">Computation to retry</param>
 /// <typeparam name="RT">Runtime</typeparam>
 /// <typeparam name="A">Computation bound value type</typeparam>
 /// <returns>The result of the last invocation of ma</returns>
 public static Eff <A> retryWhile <A>(Schedule schedule, Eff <A> ma, Func <Error, bool> predicate) =>
 ScheduleEff <A> .RetryWhile(ma, schedule, predicate);
Esempio n. 2
0
 /// <summary>
 /// Keeps retrying the computation until the predicate returns false
 /// </summary>
 /// <param name="ma">Computation to retry</param>
 /// <typeparam name="RT">Runtime</typeparam>
 /// <typeparam name="A">Computation bound value type</typeparam>
 /// <returns>The result of the last invocation of ma</returns>
 public static Eff <A> retryWhile <A>(Eff <A> ma, Func <Error, bool> predicate) =>
 ScheduleEff <A> .RetryWhile(ma, Schedule.Forever, predicate);
Esempio n. 3
0
 /// <summary>
 /// Keeps retrying the computation, until the scheduler expires, or the predicate returns false
 /// </summary>
 /// <param name="schedule">Scheduler strategy for retrying</param>
 /// <param name="ma">Computation to retry</param>
 /// <typeparam name="RT">Runtime</typeparam>
 /// <typeparam name="A">Computation bound value type</typeparam>
 /// <returns>The result of the last invocation of ma</returns>
 public static Eff <RT, A> retryWhile <RT, A>(Schedule schedule, Eff <RT, A> ma, Func <Error, bool> predicate) where RT : struct =>
 ScheduleEff <RT, A> .RetryWhile(ma, schedule, predicate);
Esempio n. 4
0
 /// <summary>
 /// Keeps retrying the computation until the predicate returns false
 /// </summary>
 /// <param name="ma">Computation to retry</param>
 /// <typeparam name="RT">Runtime</typeparam>
 /// <typeparam name="A">Computation bound value type</typeparam>
 /// <returns>The result of the last invocation of ma</returns>
 public static Eff <RT, A> retryWhile <RT, A>(Eff <RT, A> ma, Func <Error, bool> predicate) where RT : struct =>
 ScheduleEff <RT, A> .RetryWhile(ma, Schedule.Forever, predicate);