a value type
Triggered when a queue is changed.
on( "change", ( event, addedItems, removedItems ) => {
// DO SOMETHING HERE
})
event object.
enqueued items sorted by their enqueue timing in ascending order
dequeued items sorted by their dequeue timing in ascending order
Triggered when a queue is initialized or changed. If a queue is initialized when event handlers are set, event handlers are invoked immediately.
on( "value", ( event, addedItems, removedItems ) => {
// DO SOMETHING HERE
})
an event object
enqueued items sorted by their enqueue timing in ascending order
dequeued items sorted by their dequeue timing in ascending order
Adds the specified element to this queue.
the element to be added
true
Adds all the elements of the specified array to this queue.
the array of elements to be inserted
true if this queue is changed as a result of the call
Removes all of the elements in this queue.
this
Clear this queue and then appends the specified element at the end of this queue.
element to be pushed
true
Clear this queue and then appends all of the elements in the specified array to the end of this queue.
the array of elements to be appended
true if this list is changed as a result of the call
Clear this queue and then appends the specified element to this queue without raising an exception.
element to be appended to this queue
true if the specified element is successfully appended
Clear this queue and then appends the specified elements to this queue.
elements to be appended to this queue
true if this queue is changed as a result of the call
Returns true if this queue contains the specified value.
value to search for
comparator
context of the comparator
true if this queue contains the specified value
Returns true if this queue contains all the specified values.
values to search for
comparator
context of the comparator
true if this queue contains all the specified values
Iterates over elements of this queue, calling the iteratee for each element. The iteratee is bound to the thisArg and invoked with three arguments: value, key, this queue. The iteratee may exit iteration early by explicitly returning false.
the function called per iteration
the this binding of the iteratee
true to iterate in the reverse order
this
Returns the head of this queue, or returns null if this queue is empty.
the head of this queue, or returns null if this queue is empty
Returns the first element which the specified predicate returns true, or null if there is no such element. The predicate is bound to the thisArg and invoked with three arguments: element, index and this instance.
the function called per iteration
the this binding of the predicate
true to iterate in the reverse order
the first element which the predicate returns true, or null if there is no such element
Sets to the specified JSON array.
JSON array to be set
this
Returns an element at the specified index.
an index of the element
the element at the specified index
Returns the capacity.
the capacity
Returns the index of the specified value.
value to search for
comparator
context of the comparator
the index of the specified value or -1 if this queue does not contain the specified value
Returns true if this queue is empty.
true if this queue is empty
Returns true if this is initialized.
true if this is initialized.
Returns true if this data is locked.
true if this data 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 the last index of the specified value.
value to search for
comparator
context of the comparator
the last index of the specified value or -1 if this queue does not contain the specified value
Locks this data.
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
Adds the specified element to this queue.
the element to be added
true
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
Returns the head of this queue, or returns null if this queue is empty.
the head of this queue, or returns null if this queue is empty
Removes and returns the first value.
the removed first element, or null if this queue is empty
Removes and returns the first value.
the removed first element
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
Sets to the specified capacity. Older elements are removed to fit to the specified capacity if the number of elements this queue has is larger than the specified capacity.
the new capacity
the previous capacity
Returns the size.
the size
Returns the array representing this queue. Must not change the returned array.
the array representing this queue
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
Unlocks this data.
this
Extends the specified target with the Connectable methods.
non-null target to be extended
the specified target
Generated using TypeDoc
A synchronized queue.