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