Options
All
  • Public
  • Public/Protected
  • All
Menu

A synchronized integer.

Hierarchy

Index

Constructors

constructor

Properties

Protected __mem__

Methods

addAndGet

  • addAndGet(delta: number): number | null

compareAndSet

  • compareAndSet(expected: number | null, update: number | null, forcibly?: boolean): boolean
  • Sets to the update if the expected equals to this value and the update differs from the current value. If the forcibly is true, sets to the specified value even if the update equals to the current value.

    throws

    Error if this is read-only

    throws

    Error if update is null and this is non-null

    Parameters

    • expected: number | null

      the expected value

    • update: number | null

      the new value

    • Default value forcibly: boolean = false

      true to ignore an equality check

    Returns boolean

    true if the expected is equal to this value

compareTo

  • compareTo(value: number | null | SScalar<number>): number
  • Compares this value with the specified value. Returns a negative integer, zero, a positive integer as this value is less than, equals to, or greater than the specified value.

    Parameters

    • value: number | null | SScalar<number>

      value to be compared

    Returns number

    a negative integer, zero, a positive integer as this value is less than, equals to, or greater than the specified value

connector

contains

  • contains(value: unknown, comparator?: Comparator, thisArg?: unknown): boolean

containsAll

  • containsAll(values: ArrayLike<unknown>, comparator?: Comparator, thisArg?: unknown): boolean

decrementAndGet

  • decrementAndGet(): number | null

each

  • each(iteratee: Iteratee<string, any, this>, thisArg?: SScalarMemory<number>, reverse?: undefined | false | true): this
  • each(iteratee: Iteratee<number, any, this>, thisArg?: SScalarMemory<number>, reverse?: undefined | false | true): this
  • If the value is an object/an array, iterates over fields/elements of the value, calling the iteratee for each field/element. The iteratee is invoked with three arguments: field value/element, field name/index and this instance.

    If the value is null/undefined, does not invoke the iteratee.

    For anything else, invokes the iteratee with three arguments: the value, null and this instance.

    The iteratee is bound to the specified thisArg and may exit iteration early by explicitly returning false.

    Parameters

    • iteratee: Iteratee<string, any, this>

      the function called per iteration

    • Optional thisArg: SScalarMemory<number>

      the this binding of the iteratee

    • Optional reverse: undefined | false | true

      true to iterate in the reverse order if the value is an array

    Returns this

    this

  • If the value is an object/an array, iterates over fields/elements of the value, calling the iteratee for each field/element. The iteratee is invoked with three arguments: field value/element, field name/index and this instance.

    If the value is null/undefined, does not invoke the iteratee.

    For anything else, invokes the iteratee with three arguments: the value, null and this instance.

    The iteratee is bound to the specified thisArg and may exit iteration early by explicitly returning false.

    Parameters

    • iteratee: Iteratee<number, any, this>

      the function called per iteration

    • Optional thisArg: SScalarMemory<number>

      the this binding of the iteratee

    • Optional reverse: undefined | false | true

      true to iterate in the reverse order if the value is an array

    Returns this

    this

equals

  • equals(value: number | null | SScalar<number>): boolean

find

  • find(predicate: Iteratee<string, any, this>, thisArg?: unknown, reverse?: undefined | false | true): unknown
  • find(predicate: Iteratee<number, any, this>, thisArg?: unknown, reverse?: undefined | false | true): unknown
  • If the value is an object/an array, returns the first field/element which the specified predicate returns true or null if there is no such field/element. The predicate is bound to the thisArg and invoked with three arguments: value, field name/index and this instance.

    If the value is null/undefined, does not invokes the predicate and returns null.

    For anything else, invokes the predicate with three arguments: the value, null and this instance, and returns the value if the predicate returns true.

    Parameters

    • predicate: Iteratee<string, any, this>

      the function called per iteration

    • Optional thisArg: unknown

      the this binding of the predicate

    • Optional reverse: undefined | false | true

      true to iterate in the reverse order if the value is an array

    Returns unknown

    the found value or null

  • If the value is an object/an array, returns the first field/element which the specified predicate returns true or null if there is no such field/element. The predicate is bound to the thisArg and invoked with three arguments: value, field name/index and this instance.

    If the value is null/undefined, does not invokes the predicate and returns null.

    For anything else, invokes the predicate with three arguments: the value, null and this instance, and returns the value if the predicate returns true.

    Parameters

    • predicate: Iteratee<number, any, this>

      the function called per iteration

    • Optional thisArg: unknown

      the this binding of the predicate

    • Optional reverse: undefined | false | true

      true to iterate in the reverse order if the value is an array

    Returns unknown

    the found value or null

fromJson

  • fromJson(json: unknown): this

fromString

  • fromString(str: string): this

get

  • get(): number | null

getAndAdd

  • getAndAdd(delta: number): number | null

getAndDecrement

  • getAndDecrement(): number | null

getAndIncrement

  • getAndIncrement(): number | null

getAndSet

  • getAndSet(value: number | null, forcibly?: boolean): number | null
  • Sets to the specified value and returns the old value if the specified value differs from the current value. If the forcibly is true, sets to the specified value even if the specified value equals to the current value.

    throws

    Error if this is read-only

    throws

    Error if value is null and this is non-null

    Parameters

    • value: number | null

      the new value

    • Default value forcibly: boolean = false

      true to ignore an equality check

    Returns number | null

    the old value

getValue

  • getValue(): number | null

incrementAndGet

  • incrementAndGet(): number | null

indexOf

  • indexOf(value: unknown, comparator?: Comparator, thisArg?: unknown): number

initialize

  • initialize(): this

isEmpty

  • isEmpty(): boolean

isInitialized

  • isInitialized(): boolean

isLocked

  • isLocked(): boolean

isNonNull

  • isNonNull(): boolean

isNotNull

  • isNotNull(): boolean

isNull

  • isNull(): boolean

isReadOnly

  • isReadOnly(): boolean

lastIndexOf

  • lastIndexOf(value: unknown, comparator?: Comparator, thisArg?: unknown): number

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

reset

  • reset(): number | null

resetValue

  • resetValue(): number | 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

set

  • set(value: number | null, forcibly?: boolean): this
  • Sets to the specified value if the specified value differs from the current value. If the forcibly is true, sets to the specified value even if the specified value equals to the current value.

    throws

    Error if this is read-only

    throws

    Error if value is null and this is non-null

    Parameters

    • value: number | null

      new value

    • Default value forcibly: boolean = false

      true to ignore an equality check

    Returns this

    this

setValue

  • setValue(value: number | null, forcibly?: boolean): this
  • Sets to the specified value if the specified value differs from the current value. If the forcibly is true, sets to the specified value even if the specified value equals to the current value.

    throws

    Error if this is read-only

    throws

    Error if value is null and this is non-null

    Parameters

    • value: number | null

      the new value

    • Default value forcibly: boolean = false

      true to ignore an equality check

    Returns this

    this

size

  • size(): number

toDirty

  • toDirty(): this

toJson

  • toJson(): unknown

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