Handler#
Handler ABC's.
The handler abstract classes.
SessionHandler
#
SessionHandler(client: Client)
Session handler base.
The base session handler object.
Note
All custom session handlers must subclass this.
PARAMETER | DESCRIPTION |
---|---|
client |
The base ongaku client.
TYPE:
|
sessions
abstractmethod
property
#
The sessions attached to this handler.
players
abstractmethod
property
#
The players attached to this handler.
start
abstractmethod
async
#
Start the session handler.
Starts up the session handler and attempts to connect all sessions to their websocket.
stop
abstractmethod
async
#
Stop the session handler.
Stops the session handler and kills all players and sessions.
add_session
abstractmethod
#
Add a session.
Add a new session to the session handler.
Parameters session The session to add to the session handler.
RETURNS | DESCRIPTION |
---|---|
Session
|
The session that was added to the handler. |
fetch_session
abstractmethod
#
Fetch a session.
Returns a valid session.
Note
If a name is provided, only that session will be attempted to be returned.
PARAMETER | DESCRIPTION |
---|---|
name |
The name of the session.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Session
|
The session to use. |
RAISES | DESCRIPTION |
---|---|
NoSessionError
|
Raised when there is no available sessions for the handler to return. |
SessionMissingError
|
Raised when a session is requested, but does not exist. |
delete_session
abstractmethod
async
#
delete_session(name: str) -> None
Delete a session.
Delete a session from the session handler.
Parameters name The name of the session to delete.
RETURNS | DESCRIPTION |
---|---|
Session
|
The session that was added to the handler. |
RAISES | DESCRIPTION |
---|---|
SessionMissingError
|
Raised when the session does not exist. |
add_player
abstractmethod
#
fetch_player
abstractmethod
#
fetch_player(
guild: hikari.SnowflakeishOr[hikari.Guild],
) -> Player
Fetch a player.
Fetches an existing player.
PARAMETER | DESCRIPTION |
---|---|
guild |
The
TYPE:
|
RAISES | DESCRIPTION |
---|---|
PlayerMissingError
|
Raised when the player for the specified guild does not exist. |
delete_player
abstractmethod
async
#
delete_player(
guild: hikari.SnowflakeishOr[hikari.Guild],
) -> None
Delete a player.
Delete a pre-existing player.
PARAMETER | DESCRIPTION |
---|---|
guild |
The
TYPE:
|
RAISES | DESCRIPTION |
---|---|
PlayerMissingError
|
Raised when the player for the specified guild does not exist. |