ODSession class
We are still working the API Reference! This page might be incomplete or doesn't contain all details!
Overview
This is an Open Ticket session.
It can be used to create 100% unique id's for usage in the bot. An id can also store additional data which isn't saved to the filesystem. You can almost compare it to the PHP session system.
Properties
Properties
inherited id
class ➜ api.ODId
The id of this data.
sessions
array ➜ api.ODSessionInstance[]
An array of all the currently active session instances.
timeoutMinutes
number ➜ number
The default amount of minutes before a session automatically stops.
Methods
constructor()
function ➜ api.ODSession
(no description)
View Parameters (2)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.intervalSeconds
: number ➜number
- 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.
data()
function ➜ any
Get the data of a session instance. Returns null
when not found.
View Parameters (1)
id
: string ➜string
- Parameter Description Lorem Ipsum.
onTimeout()
function ➜ void
Listen for a session timeout (default or custom)
View Parameters (1)
callback
: type ➜api.ODSessionTimeoutCallback
- Parameter Description Lorem Ipsum.
setTimeout()
function ➜ boolean
Change the global or session timeout minutes. Returns true
when sucessful.
View Parameters (2)
start()
function ➜ string
Start a session instance with data. Returns the unique id required to access the session.
View Parameters (1)
data
: type ➜any
- Parameter Description Lorem Ipsum.
stop()
function ➜ boolean
Stop & delete a session instance. Returns true
when sucessful.
View Parameters (1)
id
: string ➜string
- Parameter Description Lorem Ipsum.
stopAutoTimeout()
function ➜ void
Stop the global interval that automatically deletes timed-out sessions. (This action can't be reverted!)
update()
function ➜ boolean
Update the data of a session instance. Returns true
when sucessful.
View Parameters (2)
id
: string ➜string
- Parameter Description Lorem Ipsum.data
: type ➜any
- Parameter Description Lorem Ipsum.
Defaults
We're still working on this part of the documentation!
Examples
We're still working on this part of the documentation!