Handlers#
Handler Impl's.
The handler implemented classes.
BasicSessionHandler
#
BasicSessionHandler(client: Client)
Bases: handler_.SessionHandler
Basic Session Handler.
This session handler simply fetches the first working session, and returns it. If it closes or fails, it switches to the next available one.
start
async
#
Start the session handler.
Starts up the session handler and attempts to connect all sessions to their websocket.
stop
async
#
Stop the session handler.
Stops the session handler and kills all players and sessions.
fetch_session
#
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
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
#
fetch_player
#
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
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. |