Events#
Error Impl's.
The error implemented classes.
PayloadEvent
#
Bases: events_.OngakuEvent
Payload Event.
The event that is dispatched each time a message is received from the websocket.
from_session
classmethod
#
from_session(
session: Session, payload: str
) -> PayloadEvent
Build the PayloadEvent with just a session.
ReadyEvent
#
ReadyEvent(
app: hikari.RESTAware,
client: Client,
session: Session,
resumed: bool,
session_id: str,
)
Bases: events_.OngakuEvent
Ready Event.
Dispatched by Lavalink upon successful connection and authorization. Contains fields determining if resuming was successful, as well as the session id.
from_session
classmethod
#
from_session(
session: Session, resumed: bool, session_id: str
) -> ReadyEvent
Build the ReadyEvent with just a session.
PlayerUpdateEvent
#
PlayerUpdateEvent(
app: hikari.RESTAware,
client: Client,
session: Session,
guild_id: hikari.Snowflake,
state: State,
)
Bases: events_.OngakuEvent
Player Update Event.
Dispatched every x seconds (configurable in application.yml
) with the current state of the player.
from_session
classmethod
#
from_session(
session: Session,
guild_id: hikari.Snowflake,
state: player_.State,
) -> PlayerUpdateEvent
Build the PlayerUpdateEvent with just a session.
StatisticsEvent
#
StatisticsEvent(
app: hikari.RESTAware,
client: Client,
session: Session,
players: int,
playing_players: int,
uptime: int,
memory: Memory,
cpu: Cpu,
frame_statistics: FrameStatistics | None,
)
Bases: events_.OngakuEvent
Statistics Event.
A collection of statistics sent every minute.
from_session
classmethod
#
from_session(
session: Session,
players: int,
playing_players: int,
uptime: int,
memory: Memory,
cpu: Cpu,
frame_statistics: FrameStatistics | None,
) -> StatisticsEvent
Build the StatisticsEvent with just a session.
TrackStartEvent
#
TrackStartEvent(
app: hikari.RESTAware,
client: Client,
session: Session,
guild_id: hikari.Snowflake,
track: track_.Track,
)
Bases: events_.OngakuEvent
Track start event.
Dispatched when a track starts playing.
from_session
classmethod
#
from_session(
session: Session,
guild_id: hikari.Snowflake,
track: track_.Track,
) -> TrackStartEvent
Build the TrackStartEvent with just a session.
TrackEndEvent
#
TrackEndEvent(
app: hikari.RESTAware,
client: Client,
session: Session,
guild_id: hikari.Snowflake,
track: track_.Track,
reason: events_.TrackEndReasonType,
)
Bases: events_.OngakuEvent
Track end event.
Dispatched when a track ends.
from_session
classmethod
#
from_session(
session: Session,
guild_id: hikari.Snowflake,
track: track_.Track,
reason: events_.TrackEndReasonType,
) -> TrackEndEvent
Build the TrackEndEvent with just a session.
TrackException
#
TrackException(
message: str | None,
severity: errors_.SeverityType,
cause: str,
)
Bases: errors_.ExceptionError
TrackExceptionEvent
#
TrackExceptionEvent(
app: hikari.RESTAware,
client: Client,
session: Session,
guild_id: hikari.Snowflake,
track: track_.Track,
exception: errors_.ExceptionError,
)
Bases: events_.OngakuEvent
Track exception event.
Dispatched when a track throws an exception.
from_session
classmethod
#
from_session(
session: Session,
guild_id: hikari.Snowflake,
track: track_.Track,
exception: errors_.ExceptionError,
) -> TrackExceptionEvent
Build the TrackExceptionEvent with just a session.
TrackStuckEvent
#
TrackStuckEvent(
app: hikari.RESTAware,
client: Client,
session: Session,
guild_id: hikari.Snowflake,
track: track_.Track,
threshold_ms: int,
)
Bases: events_.OngakuEvent
Track stuck event.
Dispatched when a track gets stuck while playing.
from_session
classmethod
#
from_session(
session: Session,
guild_id: hikari.Snowflake,
track: track_.Track,
threshold_ms: int,
) -> TrackStuckEvent
Build the PayloadEvent with just a session.
WebsocketClosedEvent
#
WebsocketClosedEvent(
app: hikari.RESTAware,
client: Client,
session: Session,
guild_id: hikari.Snowflake,
code: int,
reason: str,
by_remote: bool,
)
Bases: events_.OngakuEvent
Websocket Closed Event.
Dispatched when an audio WebSocket (to Discord) is closed. This can happen for various reasons (normal and abnormal), e.g. when using an expired voice server update. 4xxx codes are usually bad. See the Discord Docs.
from_session
classmethod
#
from_session(
session: Session,
guild_id: hikari.Snowflake,
code: int,
reason: str,
by_remote: bool,
) -> WebsocketClosedEvent
Build the PayloadEvent with just a session.
QueueEmptyEvent
#
QueueEmptyEvent(
app: hikari.RESTAware,
client: Client,
session: Session,
guild_id: hikari.Snowflake,
old_track: track_.Track,
)
Bases: events_.OngakuEvent
Queue empty event.
Dispatched when the player finishes all the tracks in the queue.
from_session
classmethod
#
from_session(
session: Session,
guild_id: hikari.Snowflake,
old_track: track_.Track,
) -> QueueEmptyEvent
Build the PayloadEvent with just a session.
QueueNextEvent
#
QueueNextEvent(
app: hikari.RESTAware,
client: Client,
session: Session,
guild_id: hikari.Snowflake,
track: track_.Track,
old_track: track_.Track,
)
Bases: events_.OngakuEvent
Queue next event.
Dispatched when the player starts playing a new track.
from_session
classmethod
#
from_session(
session: Session,
guild_id: hikari.Snowflake,
track: track_.Track,
old_track: track_.Track,
) -> QueueNextEvent
Build the PayloadEvent with just a session.