Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SROQueue<V>

A synchronized read-only queue.

Type parameters

  • V

    a value type

Hierarchy

Index

Constructors

constructor

Events

change

value

  • 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
    })

    Parameters

    • event: Event

      an event object

    • addedItems: AddedQueueItems<V>

      enqueued items sorted by their enqueue timing in ascending order

    • removedItems: RemovedQueueItems<V>

      dequeued items sorted by their dequeue timing in ascending order

    Returns void

Properties

Protected __mem__

__mem__: SQueueMemory<V>

Methods

connector

contains

  • contains(element: unknown, comparator?: Comparator, thisArg?: unknown): boolean
  • Returns true if this queue contains the specified value.

    Parameters

    • element: unknown

      value to search for

    • Default value comparator: Comparator = defaultComparator

      comparator

    • Default value thisArg: unknown = this

      context of the comparator

    Returns boolean

    true if this queue contains the specified value

containsAll

  • containsAll(elements: ArrayLike<unknown>, comparator?: Comparator, thisArg?: unknown): boolean
  • Returns true if this queue contains all the specified values.

    Parameters

    • elements: ArrayLike<unknown>

      values to search for

    • Default value comparator: Comparator = defaultComparator

      comparator

    • Default value thisArg: unknown = this

      context of the comparator

    Returns boolean

    true if this queue contains all the specified values

each

  • each(iteratee: Iteratee<number, V | null, this>, thisArg?: unknown, reverse?: boolean): this
  • 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.

    Parameters

    • iteratee: Iteratee<number, V | null, this>

      the function called per iteration

    • Default value thisArg: unknown = this

      the this binding of the iteratee

    • Default value reverse: boolean = false

      true to iterate in the reverse order

    Returns this

    this

element

  • element(): V | null

find

  • find(predicate: Iteratee<number, V | null, this>, thisArg?: unknown, reverse?: boolean): unknown
  • 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.

    Parameters

    • predicate: Iteratee<number, V | null, this>

      the function called per iteration

    • Default value thisArg: unknown = this

      the this binding of the predicate

    • Default value reverse: boolean = false

      true to iterate in the reverse order

    Returns unknown

    the first element which the predicate returns true, or null if there is no such element

get

  • get(index: number): V | null

getCapacity

  • getCapacity(): number

indexOf

  • indexOf(element: unknown, comparator?: Comparator, thisArg?: unknown): number
  • Returns the index of the specified value.

    Parameters

    • element: unknown

      value to search for

    • Default value comparator: Comparator = defaultComparator

      comparator

    • Default value thisArg: unknown = this

      context of the comparator

    Returns number

    the index of the specified value or -1 if this queue does not contain the specified value

initialize

  • initialize(): this

isEmpty

  • isEmpty(): boolean

isInitialized

  • isInitialized(): boolean

isLocked

  • isLocked(): boolean

isNonNull

  • isNonNull(): boolean

isReadOnly

  • isReadOnly(): boolean

lastIndexOf

  • lastIndexOf(element: unknown, comparator?: Comparator, thisArg?: unknown): number
  • Returns the last index of the specified value.

    Parameters

    • element: unknown

      value to search for

    • Default value comparator: Comparator = defaultComparator

      comparator

    • Default value thisArg: unknown = this

      context of the comparator

    Returns number

    the last index of the specified value or -1 if this queue does not contain the specified value

lock

  • lock(): this

off

  • off(types: string, handler?: Function): this
  • off(target: unknown, types: string, handler?: Function): 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" );

    Parameters

    • types: string

      space-separated event types

    • Optional handler: Function

      the event handler to be unregistered

    Returns this

    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" );

    Parameters

    • target: unknown

      event target

    • types: string

      space-separated event types

    • Optional handler: Function

      the event handler to be unregistered

    Returns this

    this

offoff

offon

on

  • on(types: string, handler: Function): this
  • on(target: unknown, types: string, handler: Function): 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(){} );

    Parameters

    • types: string

      space-separated event types

    • handler: Function

      the event handler to be registered

    Returns this

    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(){} );

    Parameters

    • target: unknown

      event target or event types

    • types: string

      space-separated event types

    • handler: Function

      the event handler to be registered

    Returns this

    this

one

  • one(types: string, handler: Function): this
  • one(target: unknown, types: string, handler: Function): 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(){} );

    Parameters

    • types: string

      space-separated event types

    • handler: Function

      The event handler to be registered

    Returns this

    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(){} );

    Parameters

    • target: unknown

      event target

    • types: string

      space-separated event types

    • handler: Function

      The event handler to be registered

    Returns this

    this

onoff

  • 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
    });

    Parameters

    • types: string

      space-separated event names

    • handler: OnoffHandler

      an event handler

    Returns this

    this

onon

  • 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, ... ] );
        }
    });

    Parameters

    • types: string

      space-separated event types

    • handler: OnonHandler

      an event handler

    Returns this

    this

peek

  • peek(): V | null

retrigger

  • retrigger(originalEvent: OriginalEvent, types: string, parameters?: unknown[]): unknown[]
  • retrigger(target: Node | null, originalEvent: OriginalEvent, types: string, parameters?: unknown[]): unknown[]
  • 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" );

    Parameters

    • originalEvent: OriginalEvent

      the event object

    • types: string

      space-separated event types

    • Optional parameters: unknown[]

    Returns unknown[]

    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" );

    Parameters

    • target: Node | null

      event target

    • originalEvent: OriginalEvent

      the event object

    • types: string

      space-separated event types

    • Optional parameters: unknown[]

      event parameters

    Returns unknown[]

    the returned values of the invoked handlers

size

  • size(): number

toArray

  • toArray(): Array<V | null>

toJson

  • toJson(): Array<V | null>

toString

  • toString(): string

trigger

  • trigger(types: string, parameters?: unknown[]): unknown[]
  • trigger(target: Node | null, types: string, parameters?: unknown[]): unknown[]
  • 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" );

    Parameters

    • types: string

      space-separated event types

    • Optional parameters: unknown[]

      event parameters

    Returns unknown[]

    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" );

    Parameters

    • target: Node | null

      Event target

    • types: string

      space-separated event types

    • Optional parameters: unknown[]

      event parameters

    Returns unknown[]

    the returned values of the invoked handlers

triggerDirect

  • triggerDirect(name: string, type: string[] | null, args: unknown[] | null, results: null): null
  • triggerDirect(name: string, type: string[] | null, args: unknown[] | null, results: unknown[]): unknown[]

uninitialize

  • uninitialize(): this

unlock

  • unlock(): this

Static extend

Generated using TypeDoc