Skip to main content

ODEvent_Default class

under construction

We are still working the API Reference! This page might be incomplete or doesn't contain all details!

Overview

This is a special class that adds type definitions & typescript to the ODEvent class. It doesn't add any extra features!

This default class is made for the global variable opendiscord.events!

View Source

Properties


inherited id class api.ODId

The id of this data.

View Source


inherited listenerLimit number number

The max listener limit before a possible memory leak will be announced

View Source


inherited listeners array Function[]

The list of permanent listeners.

View Source


inherited oncelisteners array Function[]

The list of one-time listeners. List is cleared every time the event is emitted.

View Source


Methods


constructor() function api.ODEvent_Default

(no description)

View Parameters (1)
  • id: type api.ODValidId - Parameter Description Lorem Ipsum.

View Source


inherited protected _change() function void

Trigger an onChange() event in the parent ODManager of this class.

View Source


inherited changed() function void

(❌ SYSTEM ONLY!!) Set the callback executed when a value inside this class changes.

View Parameters (1)
  • callback: type null|(() => void) - Parameter Description Lorem Ipsum.

View Source


emit() function Promise

Emit this event to all listeners. You are required to provide all parameters of the event!

View Parameters (1)
  • params: type Parameters - Parameter Description Lorem Ipsum.

View Source


listen() function void

Add a permanent callback to this event. This will stay as long as the bot is running!

View Parameters (1)
  • callback: type Callback - Parameter Description Lorem Ipsum.

View Source


listenOnce() function void

Add a one-time-only callback to this event. This will only trigger the callback once!

View Parameters (1)
  • callback: type Callback - Parameter Description Lorem Ipsum.

View Source


inherited setListenerLimit() function void

Edit the listener limit

View Parameters (1)
  • limit: number number - Parameter Description Lorem Ipsum.

View Source


inherited useDebug() function void

Use the Open Ticket debugger in this manager for logs

View Parameters (1)

View Source


wait() function Promise

Wait until this event is fired! Be carefull with it, because it could block the entire bot when wrongly used!

View Source


Defaults

under construction

We're still working on this part of the documentation!

Examples

under construction

We're still working on this part of the documentation!