ODEvent_Default class
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
!
Properties
Properties
inherited id
class ➜ api.ODId
The id of this data.
inherited listenerLimit
number ➜ number
The max listener limit before a possible memory leak will be announced
inherited listeners
array ➜ Function[]
The list of permanent listeners.
inherited oncelisteners
array ➜ Function[]
The list of one-time listeners. List is cleared every time the event is emitted.
Methods
constructor()
function ➜ api.ODEvent_Default
(no description)
View Parameters (1)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.
inherited protected _change()
function ➜ void
Trigger an onChange()
event in the parent ODManager
of this class.
inherited changed()
function ➜ void
(❌ SYSTEM ONLY!!) Set the callback executed when a value inside this class changes.
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.
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.
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.
inherited setListenerLimit()
function ➜ void
Edit the listener limit
View Parameters (1)
limit
: number ➜number
- Parameter Description Lorem Ipsum.
inherited useDebug()
function ➜ void
Use the Open Ticket debugger in this manager for logs
View Parameters (1)
debug
: type ➜null|api.ODDebugger
- Parameter Description Lorem Ipsum.
wait()
function ➜ Promise
Wait until this event is fired! Be carefull with it, because it could block the entire bot when wrongly used!
Defaults
We're still working on this part of the documentation!
Examples
We're still working on this part of the documentation!