Ejemplo n.º 1
0
 public IPromise ThenAll(Func <T, IEnumerable <IPromise> > chain)
 {
     return(Then(_ => Promise.All(chain(resolveValue)), null));
 }
Ejemplo n.º 2
0
 public IPromise ThenAll(Func <IEnumerable <IPromise> > chain)
 {
     return(Then(() => Promise.All(chain()), null));
 }