an event object
a reason
a task itself
Triggered when a task is done successfully.
an event object
a task result
a task itself
Tries to cancel the current task. This operation may fail if the task is already done.
this
Creates a new task with the specified arguments and cancels previous tasks if possible.
a task arguments
this
Returns the current task argument at the specified position or null if it does not exist.
an index of an argument
the current task argument at the specified or null if it does not exist
Returns the current task arguments or null if it does not exist.
the current task arguments or null if it does not exist
Returns the reason why the current task is failed. Returns null when isFailed() is not true.
the reason why the current task is failed
Returns the current task result or null if it does not exist.
the current task result or null if it does not exist
Returns true if the current task is canceled.
true if the current task is canceled
Returns true If the current task is completed or if no task exists. Completion may be due to normal termination, cancellation, or anything else.
true if the current task is done
Returns true if the current task is failed.
true if the current task is failed
Returns true if this is initialized.
true if this is initialized.
Returns true if this task is locked.
true if this task is locked
Returns true if this is non-null.
true if this is non-null.
Returns true if this is read-only.
true if this is read-only
Returns true if the current task is done successfully.
true if the current task is done successfully
Locks this task.
this
Unregister the event handlers of the specified events.
off( "success" );
// Unregister all the handlers of the events with the namespace `sample`.
off( ".sample" );
// Unregister all the handlers of the `success` event with the namespace `sample`.
off( "success.sample" );
// Multiple event types
off( "success fail" );
space-separated event types
the event handler to be unregistered
this
Unregister the event handlers of the specified events.
off( "success" );
// Unregister all the handlers of the events with the namespace `sample`.
off( ".sample" );
// Unregister all the handlers of the `success` event with the namespace `sample`.
off( "success.sample" );
// Multiple event types
off( "success fail" );
event target
space-separated event types
the event handler to be unregistered
this
Unregisters the event handler for the unregistration events of the specified events.
onoff("eventname", handler);
space-separated event names
an event handler
this
Unregisters the event handlers for the registration events of the specified events.
offon("eventname", handler);
space-separated event types
an event handler
this
Registers the specified event handler for the specified events. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
on( "success", function(){} );
// `success` event with a namespace `sample`
on( "success.sample", function(){} );
// Multiple namespaces
on( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
on( "success fail", function(){} );
// Event target
on( eventTarget, "success", function(){} );
space-separated event types
the event handler to be registered
this
Registers the specified event handler for the specified events. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
on( "success", function(){} );
// `success` event with a namespace `sample`
on( "success.sample", function(){} );
// Multiple namespaces
on( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
on( "success fail", function(){} );
// Event target
on( eventTarget, "success", function(){} );
event target or event types
space-separated event types
the event handler to be registered
this
Registers the specified event handler for the specified events. The specified event handler is invoked at most once. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
one( "success", function(){} );
// `success` event with a namespace `sample`
one( "success.sample", function(){} );
// Multiple namespaces
one( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
one( "success fail", function(){} );
space-separated event types
The event handler to be registered
this
Registers the specified event handler for the specified events. The specified event handler is invoked at most once. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
one( "success", function(){} );
// `success` event with a namespace `sample`
one( "success.sample", function(){} );
// Multiple namespaces
one( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
one( "success fail", function(){} );
event target
space-separated event types
The event handler to be registered
this
Registers the event handler for the unregistration events of the specified events. The handler is invoked with Connection and a boolean when the event handlers of the specified events are unregistered. The latter boolean gets true if this is the last handler of the event identified by Connection.type.
onoff("eventname", function( connection, isLast ){
// DO SOMETHING HERE
});
space-separated event names
an event handler
this
Registers the event handler for the registration events of the specified events. The handler is invoked with Connection and a boolean when the event handlers of the specified events are registered. The latter boolean gets true if this is the first handler of the event identified by Connection.type.
onon("eventname", function( connection, isFirst ){
if( some-condition ) {
connection.trigger( this, null, [ first-event-parameter, second-event-parameter, ... ] );
}
});
space-separated event types
an event handler
this
Invokes all the handlers of the specified event.
retrigger( originalEvent, "success" );
// With two parameters true and 156
retrigger( originalEvent, "success", [true, 156] );
// Namespaced event type
retrigger( originalEvent, "success.sample" );
// Multiple event types
retrigger( originalEvent, "success fail" );
the event object
space-separated event types
the returned values of the invoked handlers
Invokes all the handlers of the specified event.
retrigger( originalEvent, "success" );
// With two parameters true and 156
retrigger( originalEvent, "success", [true, 156] );
// Namespaced event type
retrigger( originalEvent, "success.sample" );
// Multiple event types
retrigger( originalEvent, "success fail" );
event target
the event object
space-separated event types
event parameters
the returned values of the invoked handlers
Returns the JSON object representing this task.
the JSON object representing this task
Returns the string representing this task.
the string representing this task
Invokes all the handlers of the specified event.
trigger( "success" );
// With two parameters true and 156
trigger( "success", [true, 156] );
// Namespaced event type
trigger( "success.sample" );
// Multiple event types
trigger( "success fail" );
space-separated event types
event parameters
the returned values of the invoked handlers
Invokes all the handlers of the specified event.
trigger( "success" );
// With two parameters true and 156
trigger( "success", [true, 156] );
// Namespaced event type
trigger( "success.sample" );
// Multiple event types
trigger( "success fail" );
Event target
space-separated event types
event parameters
the returned values of the invoked handlers
Unlock this task.
this
Extends the specified target with the Connectable methods.
non-null target to be extended
the specified target
Generated using TypeDoc
Triggered when a task is failed.