Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

asap.d.ts 1.6KB

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