Package

io.scalajs.nodejs

events

Permalink

package events

Visibility
  1. Public
  2. All

Type Members

  1. class EventEmitter extends Object with IEventEmitter

    Permalink

    Much of the Node.js core API is built around an idiomatic asynchronous event-driven architecture in which certain kinds of objects (called "emitters") periodically emit named events that cause Function objects ("listeners") to be called.

    Much of the Node.js core API is built around an idiomatic asynchronous event-driven architecture in which certain kinds of objects (called "emitters") periodically emit named events that cause Function objects ("listeners") to be called.

    The EventEmitter class is defined and exposed by the events module

    Annotations
    @RawJSType() @native() @JSImport( "events" , "EventEmitter" )
    See also

    https://nodejs.org/api/events.html

  2. trait IEventEmitter extends Object

    Permalink

    EventEmitter Interface

    EventEmitter Interface

    Annotations
    @RawJSType() @native()

Value Members

  1. object EventEmitter extends Object with IEventEmitter

    Permalink

    EventEmitter Singleton

    EventEmitter Singleton

    Annotations
    @native() @JSName( "EventEmitter" )

Ungrouped