Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(rxjs): Order JSDocs for Scheduler and Improve Readability #3999

Merged
merged 1 commit into from Aug 14, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/internal/Rx.ts
Expand Up @@ -186,16 +186,16 @@ export const operators = _operators;

/**
* @typedef {Object} Rx.Scheduler
* @property {SchedulerLike} queue Schedules on a queue in the current event frame
* (trampoline scheduler). Use this for iteration operations.
* @property {SchedulerLike} asap Schedules on the micro task queue, which uses the
* fastest transport mechanism available, either Node.js' `process.nextTick()`
* or Web Worker MessageChannel or setTimeout or others. Use this for
* fastest transport mechanism available, either Node.js' `process.nextTick()`,
* Web Worker MessageChannel, setTimeout, or others. Use this for
* asynchronous conversions.
* @property {SchedulerLike} queue Schedules on a queue in the current event frame
* (trampoline scheduler). Use this for iteration operations.
* @property {SchedulerLike} animationFrame Schedules work with `requestAnimationFrame`.
* Use this for synchronizing with the platform's painting.
* @property {SchedulerLike} async Schedules work with `setInterval`. Use this for
* time-based operations.
* @property {SchedulerLike} animationFrame Schedules work with `requestAnimationFrame`.
* Use this for synchronizing with the platform's painting
*/
let Scheduler = {
asap,
Expand Down