Example #1
0
 public static void Reject <X>(this IFutureBuilder <X> @this, Exception error)
 {
     @this.TryReject(error);
 }
Example #2
0
 public static void Resolve <X>(this IFutureBuilder <X> @this, X result)
 {
     @this.TryResolve(result);
 }