Skip to content

async.FastDeferred ext

Eugene Lazutkin edited this page Mar 16, 2016 · 4 revisions

Because async.FastDeferred is modelled after async.Deferred to be as close to it as possible, FastDeferred-ext replicates Deferred-ext with FastDeferred-specific algorithms.

This module returns async.FastDeferred adding algorithms from async.generic.compositions as constructor properties instrumented to use FastDeferred:

  • FastDeferred.all()
  • FastDeferred.par()
  • FastDeferred.any()
  • FastDeferred.one()
  • FastDeferred.race()

Additionally all() and race() are copied to FastDeferred.Wrapper:

  • FastDeferred.Wrapper.all()
  • FastDeferred.Wrapper.race()