This is RxJS v 4. Find the latest version here
Provides 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 worldFile:
scheduler.jsscheduler.periodic.jsscheduler.recursive.jsscheduler.wrappers.jscurrentthreadscheduler.jsdefaultscheduler.jsimmediatescheduler.js
Dist:
Returns a scheduler that wraps the original scheduler, adding exception handling for scheduled actions.
handlerFunction: Handler that's run if an exception is caught. The error will be rethrown if the handler returnsfalse.
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: woopsGets 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.js
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 state
Disposable: 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();<a href="#rxschedulerprototypeschedulefuturestate-duetime-action""># Ⓢ
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.
stateAny: State passed to the action to be executed.dueTimeNumber|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 state
Disposable: 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 secondsSchedules an action to be executed with state.
stateAny: 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 ofrecurse(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
// => 2Schedules 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.
stateAny: State passed to the action to be executed.dueTimeNumber: 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 ofrecurse(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
// => 2Schedules 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.
stateAny: State passed to the action to be executed.periodNumber: 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 in
Disposable: 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
// => 3Normalizes the specified time span value to a positive value.
timeSpanNumber: 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);
// => 255Determines whether the given object is a Scheduler instance
objAny: The object to determine whether it is aSchedulerinstance
Boolean: Whether the given object is a Scheduler.
var isScheduler = Rx.Scheduler.isScheduler(Rx.Scheduler.default);
console.log('Is scheduler? %s', isScheduler);
// Is scheduler? trueGets 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.js
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.js
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:
- Node.js: uses
setImmediatefor newer builds, andprocess.nextTickfor older versions. - Browser: depending on platform may use
setImmediate,MessageChannel,window.postMessageand for older versions of IE, it will default toscript.onreadystatechanged, else falls back towindow.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