a zip code crypto-currency system good for red ONLY

asap.js 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. import { AsapAction } from './AsapAction';
  2. import { AsapScheduler } from './AsapScheduler';
  3. /**
  4. *
  5. * Asap Scheduler
  6. *
  7. * <span class="informal">Perform task as fast as it can be performed asynchronously</span>
  8. *
  9. * `asap` scheduler behaves the same as {@link async} scheduler when you use it to delay task
  10. * in time. If however you set delay to `0`, `asap` will wait for current synchronously executing
  11. * code to end and then it will try to execute given task as fast as possible.
  12. *
  13. * `asap` scheduler will do its best to minimize time between end of currently executing code
  14. * and start of scheduled task. This makes it best candidate for performing so called "deferring".
  15. * Traditionally this was achieved by calling `setTimeout(deferredTask, 0)`, but that technique involves
  16. * some (although minimal) unwanted delay.
  17. *
  18. * Note that using `asap` scheduler does not necessarily mean that your task will be first to process
  19. * after currently executing code. In particular, if some task was also scheduled with `asap` before,
  20. * that task will execute first. That being said, if you need to schedule task asynchronously, but
  21. * as soon as possible, `asap` scheduler is your best bet.
  22. *
  23. * @example <caption>Compare async and asap scheduler</caption>
  24. *
  25. * Rx.Scheduler.async.schedule(() => console.log('async')); // scheduling 'async' first...
  26. * Rx.Scheduler.asap.schedule(() => console.log('asap'));
  27. *
  28. * // Logs:
  29. * // "asap"
  30. * // "async"
  31. * // ... but 'asap' goes first!
  32. *
  33. * @static true
  34. * @name asap
  35. * @owner Scheduler
  36. */
  37. export const asap = new AsapScheduler(AsapAction);
  38. //# sourceMappingURL=asap.js.map