Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Connector

Hierarchy

  • Emitter
    • Connector

Index

Constructors

constructor

Properties

Private _connectors

_connectors: Connector[] = []

Private _transceiver

_transceiver: Transceiver

Methods

cemit

  • cemit(type: string, context: any, ...args: any[]): this
  • Emit event with specifying a context.

    Parameters

    • type: string

      Event type to emit.

    • context: any

      Context to execute the callback.

    • Rest ...args: any[]

      Argument(s) in callback.

    Returns this

cemitAll

  • cemitAll(context: any, ...args: any[]): this
  • Emit all events with specifying a context.

    Parameters

    • context: any

      Context to execute the callback.

    • Rest ...args: any[]

      Argument(s) in callback.

    Returns this

clear

  • clear(type?: undefined | string): this
  • Remove events grouped event type.

    Parameters

    • Optional type: undefined | string

      Event type to remove. If it is empty, removes all events.

    Returns this

connect

  • connect(connector: Connector): undefined | this

disconnect

  • disconnect(connector: Connector): undefined | this

disconnectAll

  • disconnectAll(): this

emit

  • emit(type: string, ...args: any[]): this
  • Emit event.

    Parameters

    • type: string

      Event type to emit.

    • Rest ...args: any[]

      Argument(s) in callback.

    Returns this

emitAll

  • emitAll(...args: any[]): this
  • Emit all events.

    Parameters

    • Rest ...args: any[]

      Argument(s) in callback.

    Returns this

getConnectors

off

  • off(type: string, callback: IEmitterDelegate): this
  • Unregister event.

    Parameters

    • type: string

      Event type.

    • callback: IEmitterDelegate

      Registered callback.

    Returns this

on

  • on(type: string, callback: IEmitterDelegate): this
  • Register event.

    Parameters

    • type: string

      Event type.

    • callback: IEmitterDelegate

      Callback when the event fires.

    Returns this

once

  • once(type: string, callback: IEmitterDelegate): this
  • Register one-time event.

    Parameters

    • type: string

      Event type.

    • callback: IEmitterDelegate

      Callback when the event fires.

    Returns this

receive

send

  • send(type: string, data: any): void

Generated using TypeDoc