Rx.Scheduler class
Provides a set of static methods to access commonly used schedulers and a base class for all schedulers.
Usage
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
Location
File:
scheduler.jsscheduler.periodic.jsscheduler.recursive.jsscheduler.wrappers.jscurrentthreadscheduler.jsdefaultscheduler.jsimmediatescheduler.js
Dist:
Scheduler Instance Methods
Standard Scheduling
Recursive Scheduling
Periodic Scheduling
Scheduler Class Methods
Scheduler Class Properties
Scheduler Instance Methods
Rx.Scheduler.prototype.catch(handler)
Returns a scheduler that wraps the original scheduler, adding exception handling for scheduled actions.
Arguments
handlerFunction: Handler that's run if an exception is caught. The error will be rethrown if the handler returnsfalse.
Returns
Scheduler: Wrapper around the original scheduler, enforcing exception handling.
Example
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()
Gets the current time according to the Scheduler implementation.
Returns
Number: The current time according to the Scheduler implementation.
Example
var now = Rx.Scheduler.default.now();
console.log(now);
// => 1381806323143
Location
- rx.js
 
Standard Scheduling
Rx.Scheduler.prototype.schedule(state, action)
Schedules an action to be executed with state.
Arguments
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
Returns
Disposable: The disposable object used to cancel the scheduled action (best effort).
Example
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.
Arguments
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
Returns
Disposable: The disposable object used to cancel the scheduled action (best effort).
Example
/* 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
Recursive Scheduling
Rx.Scheduler.prototype.scheduleRecursive(state, action)
Schedules an action to be executed with state.
Arguments
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.
Returns
Disposable: The disposable object used to cancel the scheduled action (best effort).
Example
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)
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.
Arguments
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).
Returns
Disposable: The disposable object used to cancel the scheduled action (best effort).
Example
/* 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
Periodic Scheduling
Rx.Scheduler.prototype.schedulePeriodic(state, period, action)
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.
Arguments
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
Returns
Disposable: The disposable object used to cancel the scheduled action (best effort).
Example
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
Scheduler Class Methods
Rx.Scheduler.normalize(timeSpan)
Normalizes the specified time span value to a positive value.
Arguments
timeSpanNumber: The time span value to normalize.
Returns
Number: The specified time span value if it is zero or positive; otherwise, 0
Example
var r1 = Rx.Scheduler.normalize(-1);
console.log(r1);
// => 0
var r2 = Rx.Scheduler.normalize(255);
console.log(r2);
// => 255
Rx.Scheduler.isScheduler(obj)
Determines whether the given object is a Scheduler instance
Arguments
objAny: The object to determine whether it is aSchedulerinstance
Returns
Boolean: Whether the given object is a Scheduler.
Example
var isScheduler = Rx.Scheduler.isScheduler(Rx.Scheduler.default);
console.log('Is scheduler? %s', isScheduler);
// Is scheduler? true
Scheduler Class Properties
Rx.Scheduler.currentThread
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.
Example
var scheduler = Rx.Scheduler.currentThread;
var disposable = scheduler.schedule(
   'world',
   function (scheduler, x) {
      console.log('hello ' + x);
   });
// => hello world
Location
- rx.js
 
Rx.Scheduler.immediate
Gets a scheduler that schedules work immediately on the current thread.
Example
var scheduler = Rx.Scheduler.immediate;
var disposable = scheduler.scheduleRecursive(
  0,
  function (x, self) {
    console.log(x);
    if (++x < 3) { self(x); }
  }
);
// => 0
// => 1
// => 2
Location
- rx.js
 
Rx.Scheduler.default
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.
Example
var scheduler = Rx.Scheduler.default;
var disposable = scheduler.schedule(
  0,
  function (scheduler, x) {
    console.log(x);
  }
);
// => 0