sveltekit-websockets
    Preparing search index...

    Class ReferencedWebSocket

    Hierarchy

    • WebSocket
      • ReferencedWebSocket
    Index

    Constructors

    • Parameters

      • address: null

      Returns ReferencedWebSocket

    • Parameters

      • address: string | URL
      • Optionaloptions: ClientOptions | ClientRequestArgs

      Returns ReferencedWebSocket

    • Parameters

      • address: string | URL
      • Optionalprotocols: string | string[]
      • Optionaloptions: ClientOptions | ClientRequestArgs

      Returns ReferencedWebSocket

    Properties

    binaryType: "nodebuffer" | "arraybuffer" | "fragments"
    bufferedAmount: number
    CLOSED: 3

    The connection is closed.

    CLOSING: 2

    The connection is in the process of closing.

    CONNECTING: 0

    The connection is not yet open.

    extensions: string
    isPaused: boolean

    Indicates whether the websocket is paused

    lastActivity?: number
    metadata: Record<string, any> = {}
    onclose: ((event: CloseEvent) => void) | null
    onerror: ((event: ErrorEvent) => void) | null
    onmessage: ((event: MessageEvent) => void) | null
    onopen: ((event: Event) => void) | null
    OPEN: 1

    The connection is open and ready to communicate.

    params?: Record<string, string>
    protocol: string
    readyState: 0 | 1 | 2 | 3

    The current state of the connection

    timeoutTimer?: Timeout
    url: string
    CLOSED: 3

    The connection is closed.

    CLOSING: 2

    The connection is in the process of closing.

    CONNECTING: 0

    The connection is not yet open.

    OPEN: 1

    The connection is open and ready to communicate.

    Accessors

    • get connectedAt(): number

      Returns the time (millis) the sockets connected (upgraded)

      Returns number

    Methods

    • The Symbol.for('nodejs.rejection') method is called in case a promise rejection happens when emitting an event and captureRejections is enabled on the emitter. It is possible to use events.captureRejectionSymbol in place of Symbol.for('nodejs.rejection').

      import { EventEmitter, captureRejectionSymbol } from 'node:events';

      class MyClass extends EventEmitter {
      constructor() {
      super({ captureRejections: true });
      }

      [captureRejectionSymbol](err, event, ...args) {
      console.log('rejection happened for', event, 'with', err, ...args);
      this.destroy(err);
      }

      destroy(err) {
      // Tear the resource down here.
      }
      }

      Parameters

      • error: Error
      • event: string | symbol
      • ...args: any[]

      Returns void

      v13.4.0, v12.16.0

    • Type Parameters

      • K extends keyof WebSocketEventMap

      Parameters

      • type: K
      • listener:
            | ((event: WebSocketEventMap[K]) => void)
            | { handleEvent(event: WebSocketEventMap[K]): void }
      • Optionaloptions: EventListenerOptions

      Returns void

    • Parameters

      • event: string | symbol
      • listener: (...args: any[]) => void

      Returns this

    • Parameters

      • Optionalcode: number
      • Optionaldata: string | Buffer<ArrayBufferLike>

      Returns void

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

      Returns true if the event had listeners, false otherwise.

      import { EventEmitter } from 'node:events';
      const myEmitter = new EventEmitter();

      // First listener
      myEmitter.on('event', function firstListener() {
      console.log('Helloooo! first listener');
      });
      // Second listener
      myEmitter.on('event', function secondListener(arg1, arg2) {
      console.log(`event with parameters ${arg1}, ${arg2} in second listener`);
      });
      // Third listener
      myEmitter.on('event', function thirdListener(...args) {
      const parameters = args.join(', ');
      console.log(`event with parameters ${parameters} in third listener`);
      });

      console.log(myEmitter.listeners('event'));

      myEmitter.emit('event', 1, 2, 3, 4, 5);

      // Prints:
      // [
      // [Function: firstListener],
      // [Function: secondListener],
      // [Function: thirdListener]
      // ]
      // Helloooo! first listener
      // event with parameters 1, 2 in second listener
      // event with parameters 1, 2, 3, 4, 5 in third listener

      Parameters

      • event: string | symbol
      • ...args: any[]

      Returns boolean

      v0.1.26

    • Returns an array listing the events for which the emitter has registered listeners.

      import { EventEmitter } from 'node:events';

      const myEE = new EventEmitter();
      myEE.on('foo', () => {});
      myEE.on('bar', () => {});

      const sym = Symbol('symbol');
      myEE.on(sym, () => {});

      console.log(myEE.eventNames());
      // Prints: [ 'foo', 'bar', Symbol(symbol) ]

      Returns (string | symbol)[]

      v6.0.0

    • Returns the current max listener value for the EventEmitter which is either set by emitter.setMaxListeners(n) or defaults to events.defaultMaxListeners.

      Returns number

      v1.0.0

    • Returns the number of listeners listening for the event named eventName. If listener is provided, it will return how many times the listener is found in the list of the listeners of the event.

      Parameters

      • event: string | symbol
      • Optionallistener: (...args: any[]) => void

        The event handler function

      Returns number

      v3.2.0

    • Returns a copy of the array of listeners for the event named eventName.

      server.on('connection', (stream) => {
      console.log('someone connected!');
      });
      console.log(util.inspect(server.listeners('connection')));
      // Prints: [ [Function] ]

      Parameters

      • event: string | symbol

      Returns ((...args: any[]) => void)[]

      v0.1.26

    • Parameters

      • event: string | symbol
      • listener: (...args: any[]) => void

      Returns this

    • Parameters

      • event: string | symbol
      • listener: (...args: any[]) => void

      Returns this

    • Parameters

      • event: string | symbol
      • listener: (...args: any[]) => void

      Returns this

    • Pause the websocket causing it to stop emitting events. Some events can still be emitted after this is called, until all buffered data is consumed. This method is a noop if the ready state is CONNECTING or CLOSED.

      Returns void

    • Parameters

      • Optionaldata: any
      • Optionalmask: boolean
      • Optionalcb: (err: Error) => void

      Returns void

    • Parameters

      • Optionaldata: any
      • Optionalmask: boolean
      • Optionalcb: (err: Error) => void

      Returns void

    • Adds the listener function to the beginning of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventName and listener will result in the listener being added, and called, multiple times.

      server.prependListener('connection', (stream) => {
      console.log('someone connected!');
      });

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

      Parameters

      • event: string | symbol
      • listener: (...args: any[]) => void

        The callback function

      Returns this

      v6.0.0

    • Adds a one-time listener function for the event named eventName to the beginning of the listeners array. The next time eventName is triggered, this listener is removed, and then invoked.

      server.prependOnceListener('connection', (stream) => {
      console.log('Ah, we have our first user!');
      });

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

      Parameters

      • event: string | symbol
      • listener: (...args: any[]) => void

        The callback function

      Returns this

      v6.0.0

    • Returns a copy of the array of listeners for the event named eventName, including any wrappers (such as those created by .once()).

      import { EventEmitter } from 'node:events';
      const emitter = new EventEmitter();
      emitter.once('log', () => console.log('log once'));

      // Returns a new Array with a function `onceWrapper` which has a property
      // `listener` which contains the original listener bound above
      const listeners = emitter.rawListeners('log');
      const logFnWrapper = listeners[0];

      // Logs "log once" to the console and does not unbind the `once` event
      logFnWrapper.listener();

      // Logs "log once" to the console and removes the listener
      logFnWrapper();

      emitter.on('log', () => console.log('log persistently'));
      // Will return a new Array with a single function bound by `.on()` above
      const newListeners = emitter.rawListeners('log');

      // Logs "log persistently" twice
      newListeners[0]();
      emitter.emit('log');

      Parameters

      • event: string | symbol

      Returns ((...args: any[]) => void)[]

      v9.4.0

    • Removes all listeners, or those of the specified eventName.

      It is bad practice to remove listeners added elsewhere in the code, particularly when the EventEmitter instance was created by some other component or module (e.g. sockets or file streams).

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

      Parameters

      • Optionalevent: string | symbol

      Returns this

      v0.1.26

    • Type Parameters

      • K extends keyof WebSocketEventMap

      Parameters

      • type: K
      • listener:
            | ((event: WebSocketEventMap[K]) => void)
            | { handleEvent(event: WebSocketEventMap[K]): void }

      Returns void

    • Parameters

      • event: string | symbol
      • listener: (...args: any[]) => void

      Returns this

    • Make a paused socket resume emitting events. This method is a noop if the ready state is CONNECTING or CLOSED.

      Returns void

    • By default EventEmitters will print a warning if more than 10 listeners are added for a particular event. This is a useful default that helps finding memory leaks. The emitter.setMaxListeners() method allows the limit to be modified for this specific EventEmitter instance. The value can be set to Infinity (or 0) to indicate an unlimited number of listeners.

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

      Parameters

      • n: number

      Returns this

      v0.3.5