65044

Hierarchy (view full)

Constructors

Properties

Methods

Constructors

Properties

attributes: Props & Session
backoffGeneration: number
canSend?: any
cancelHash?: any
collection?: undefined
conflictPromise?: any
doubleAckHash?: any
hasSynced?: any
isIncognito?: any
isState: true
lastPhoneMessage?: any
launchGeneration: number
launched?: any
logoutMutex: number
mirrorMask: {
    change:backoffGeneration: number;
    change:canSend: undefined | number;
    change:cancelHash: undefined | number;
    change:conflictPromise: undefined | number;
    change:doubleAckHash: undefined | number;
    change:hasSynced: undefined | number;
    change:isIncognito: undefined | number;
    change:lastPhoneMessage: undefined | number;
    change:launchGeneration: number;
    change:launched: undefined | number;
    change:logoutMutex: number;
    change:mustExitLoop: undefined | number;
    change:pendingPhoneReqs: number;
    change:phoneWatchdog: undefined | number;
    change:pokeable: undefined | number;
    change:refWatcher: undefined | number;
    change:resumePromise: undefined | number;
    change:retryTimestamp: undefined | number;
    change:runPromise: undefined | number;
    change:sendHash: undefined | number;
    change:sendQueue: undefined | number;
    change:sequence: number;
    change:shortTagBase: undefined | number;
    change:shouldForceReconnect: number;
    change:shouldUpgradeToMDIntern: number;
    change:shouldUpgradeToMDPord: number;
    change:socket: undefined | number;
    change:socketPreload: undefined | number;
    change:socketWatcher: undefined | number;
    change:state: number;
    change:stream: number;
    change:streamPromise: undefined | number;
    change:syncTag: undefined | number;
}
mustExitLoop?: any
parent?: any
pendingPhoneReqs: number
phoneWatchdog?: any
pokeable?: any
proxyName: string
refWatcher?: any
resumePromise?: any
retryTimestamp?: any
runPromise?: any
sendHash?: any
sendQueue?: any
sequence: number
shortTagBase?: any
shouldForceReconnect: boolean
shouldUpgradeToMDIntern: boolean
shouldUpgradeToMDPord: boolean
socket?: any
socketPreload?: any
socketWatcher?: any
state: string
stream: string
streamPromise?: any
syncTag?: any
Proxy: string
allowedIds?: any[]
idClass?: any

Methods

  • Parameters

    • context: any

      The value of this provided for the call to listener

    • eventName: Event

      The name of the event.

    • Optionallistener: Listener

      The callback function.

    Returns this

  • Parameters

    • context: any

      The value of this provided for the call to listener

    • eventName: Event

      The name of the event.

    • Optionallistener: Listener

      The callback function.

    Returns this

  • Parameters

    • context: any

      The value of this provided for the call to listener

    • eventName: Event

      The name of the event.

    • Optionallistener: Listener

      The callback function.

    Returns this

  • Removes the specified listener from the listener array for the event named eventName.

    Parameters

    • OptionaleventName: Event

      The name of the event.

    • Optionallistener: Listener

      The callback function.

    • Optionalcontext: any

      The value of this provided for the call to listener

    Returns this

    Returns a reference to the EventEmitter, so that calls can be chained.

  • Adds the listener function to the end of the listeners array for the event named eventName.

    Parameters

    • eventName: Event

      The name of the event.

    • listener: Listener

      The callback function.

    • Optionalcontext: any

      The value of this provided for the call to listener

    Returns this

    Returns a reference to the EventEmitter, so that calls can be chained.

  • Adds a one-time listener function for the event named eventName.

    Parameters

    • eventName: Event

      The name of the event.

    • listener: Listener

      The callback function.

    • Optionalcontext: any

      The value of this provided for the call to listener

    Returns this

    Returns a reference to the EventEmitter, so that calls can be chained.

  • Synchronously calls each of the listeners registered for the event named eventName, in the order they were registered, passing the supplied arguments to each.

    Parameters

    • eventName: Event
    • Rest...args: any[]

    Returns this

    Returns a reference to the EventEmitter, so that calls can be chained.