doc/api/schedulers/scheduler.md
Rx.Scheduler classProvides a set of static methods to access commonly used schedulers and a base class for all schedulers.
The follow example shows the basic usage of an Rx.Scheduler.
var disposable = Rx.Scheduler.default.schedule(
'world',
function (scheduler, x) { console.log('hello ' + x); }
);
// => hello world
File:
scheduler.jsscheduler.periodic.jsscheduler.recursive.jsscheduler.wrappers.jscurrentthreadscheduler.jsdefaultscheduler.jsimmediatescheduler.jsDist:
Scheduler Instance MethodsScheduler Class MethodsScheduler Class PropertiesRx.Scheduler.prototype.catch(handler)<a href="#rxschedulerprototypecatchhandler">#</a> Ⓢ
Returns a scheduler that wraps the original scheduler, adding exception handling for scheduled actions.
handler Function: Handler that's run if an exception is caught. The error will be rethrown if the handler returns false.Scheduler: Wrapper around the original scheduler, enforcing exception handling.
SchedulerError.prototype = Object.create(Error.prototype);
function SchedulerError(message) {
this.message = message;
Error.call(this);
}
var scheduler = Rx.Scheduler.default;
var catchScheduler = scheduler.catch(function (e) {
return e instanceof SchedulerError;
});
// Throws no exception
var d1 = catchScheduler.schedule(function () {
throw new SchedulerError('woops');
});
var d2 = catchScheduler.schedule(function () {
throw new Error('woops');
});
// => Uncaught Error: woops
Rx.Scheduler.prototype.now()<a href="#rxschedulerprototypenow">#</a> Ⓢ
Gets the current time according to the Scheduler implementation.
Number: The current time according to the Scheduler implementation.
var now = Rx.Scheduler.default.now();
console.log(now);
// => 1381806323143
Rx.Scheduler.prototype.schedule(state, action)<a href="#rxschedulerprototypeschedulestate-action">#</a> Ⓢ
Schedules an action to be executed with state.
state: Any: State passed to the action to be executed.action: Function: Action to execute with the following arguments:scheduler: Scheduler - The current Schedulerstate: Any - The current stateDisposable: The disposable object used to cancel the scheduled action (best effort).
var disposable = Rx.Scheduler.immediate.schedule('world', function (scheduler, x) {
console.log('hello ' + x);
});
// => hello world
// Tries to cancel but too late since it is immediate
disposable.dispose();
Rx.Scheduler.prototype.scheduleFuture(state, dueTime, action)<a href="#rxschedulerprototypeschedulefuturestate-duetime-action"">#</a> Ⓢ
Schedules an action to be executed at the specified relative due time. Note this only works with the built-in Rx.Scheduler.default scheduler, as the rest will throw an exception as the framework does not allow for blocking.
state Any: State passed to the action to be executed.dueTime Number | Date: Relative or absolute time at which to execute the action.action: Function: Action to execute with the following arguments:scheduler: Scheduler - The current Schedulerstate: Any - The current stateDisposable: The disposable object used to cancel the scheduled action (best effort).
/* Relative schedule */
var disposable = Rx.Scheduler.default.scheduleFuture(
'world',
5000, /* 5 seconds in the future */
function (scheduler, x) {
console.log('hello ' + x + ' after 5 seconds');
}
);
// => hello world after 5 seconds
/* Absolute schedule */
var disposable = Rx.Scheduler.default.scheduleFuture(
'world',
new Date(Date.now() + 5000), /* 5 seconds in the future */
function (scheduler, x) {
console.log('hello ' + x + ' after 5 seconds');
}
);
// => hello world after 5 seconds
Rx.Scheduler.prototype.scheduleRecursive(state, action)<a href="#rxschedulerprototypeschedulerecursivestate-action">#</a> Ⓢ
Schedules an action to be executed with state.
state Any: State passed to the action to be executed.action: Function: Action to execute with the following parameters:state: Any - The state passed inrecurse: Function - The action to execute for recursive actions which takes the form of recurse(newState) where the new state is passed to be executed again.Disposable: The disposable object used to cancel the scheduled action (best effort).
var disposable = Rx.Scheduler.default.scheduleRecursive(
0,
function (i, recurse) {
console.log(i); if (++i < 3) { recurse(i); }
}
);
// => 0
// => 1
// => 2
Rx.Scheduler.prototype.scheduleRecursiveFuture(state, dueTime, action)<a href="#rxschedulerprototypeschedulerecursivefuturestate-duetime-action">#</a> Ⓢ
Schedules an action to be executed recursively at a specified absolute or relative due time. Note this only works with the built-in Rx.Scheduler.timeout scheduler, as the rest will throw an exception as the framework does not allow for blocking.
state Any: State passed to the action to be executed.dueTime Number: Absolute time at which to execute the action for the first time.action: Function: Action to execute with the following parameters:state: Any - The state passed inrecurse: Function - The action to execute for recursive actions which takes the form of recurse(newState, dueTime).Disposable: The disposable object used to cancel the scheduled action (best effort).
/* Absolute recursive future */
var disposable = Rx.Scheduler.default.scheduleRecursiveFuture(
0,
new Date(Date.now() + 5000), /* 5 seconds in the future */
function (i, self) {
console.log(i);
if (++i < 3) {
// Schedule mutliplied by a second by position
self(i, new Date(Date.now() + (i * 1000)));
}
}
);
// => 0
// => 1
// => 2
/* Relative recursive future */
var disposable = Rx.Scheduler.default.scheduleRecursiveFuture(
0,
5000, /* 5 seconds in the future */
function (i, self) {
console.log(i);
if (++i < 3) {
// Schedule mutliplied by a second by position
self(i, i * 1000);
}
}
);
// => 0
// => 1
// => 2
Rx.Scheduler.prototype.schedulePeriodic(state, period, action)<a href="#rxschedulerscheduleperiodicstate-period-action">#</a> Ⓢ
Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities. The periodic task will be scheduled using window.setInterval for the base implementation.
state Any: State passed to the action to be executed.period Number: Period for running the work periodically in ms.action: Function: Action to execute with the following parameters. Note that the return value from this function becomes the state in the next execution of the action.state: Any - The state passed inDisposable: The disposable object used to cancel the scheduled action (best effort).
var disposable = Rx.Scheduler.default.schedulePeriodic(
0,
1000, /* 1 second */
function (i) {
console.log(i);
// After three times, dispose
if (++i > 3) { disposable.dispose(); }
return i;
});
// => 0
// => 1
// => 2
// => 3
Rx.Scheduler.normalize(timeSpan)<a href="#rxschedulernormalizetimespan">#</a> Ⓢ
Normalizes the specified time span value to a positive value.
timeSpan Number: The time span value to normalize.Number: The specified time span value if it is zero or positive; otherwise, 0
var r1 = Rx.Scheduler.normalize(-1);
console.log(r1);
// => 0
var r2 = Rx.Scheduler.normalize(255);
console.log(r2);
// => 255
Rx.Scheduler.isScheduler(obj)<a href="#rxschedulerisschedulerobj">#</a> Ⓢ
Determines whether the given object is a Scheduler instance
obj Any: The object to determine whether it is a Scheduler instanceBoolean: Whether the given object is a Scheduler.
var isScheduler = Rx.Scheduler.isScheduler(Rx.Scheduler.default);
console.log('Is scheduler? %s', isScheduler);
// Is scheduler? true
Rx.Scheduler.currentThread<a href="#rxschedulercurrentthread">#</a> Ⓢ
Gets a scheduler that schedules work as soon as possible on the current thread. This implementation does not support relative and absolute scheduling due to thread blocking required.
var scheduler = Rx.Scheduler.currentThread;
var disposable = scheduler.schedule(
'world',
function (scheduler, x) {
console.log('hello ' + x);
});
// => hello world
Rx.Scheduler.immediate<a href="#rxschedulerimmediate">#</a> Ⓢ
Gets a scheduler that schedules work immediately on the current thread.
var scheduler = Rx.Scheduler.immediate;
var disposable = scheduler.scheduleRecursive(
0,
function (x, self) {
console.log(x);
if (++x < 3) { self(x); }
}
);
// => 0
// => 1
// => 2
Rx.Scheduler.default<a href="#rxschedulerdefault">#</a> Ⓢ
Gets a scheduler that schedules work via a timed callback based upon platform. An alias exists as Rx.Scheduler.async.
For all schedule calls, it defaults to:
setImmediate for newer builds, and process.nextTick for older versions.setImmediate, MessageChannel, window.postMessage and for older versions of IE, it will default to script.onreadystatechanged, else falls back to window.setTimeout.For all relative and absolute scheduling, it defaults to using window.setTimeout.
var scheduler = Rx.Scheduler.default;
var disposable = scheduler.schedule(
0,
function (scheduler, x) {
console.log(x);
}
);
// => 0