Skip to content

Handler#

Handler ABC's.

The handler abstract classes.

SessionHandler #

SessionHandler(client: Client)

Bases: abc.ABC

Session handler base.

The base session handler object.

Note

All custom session handlers must subclass this.

PARAMETER DESCRIPTION
client

The base ongaku client.

TYPE: Client

sessions abstractmethod property #

sessions: typing.Sequence[Session]

The sessions attached to this handler.

players abstractmethod property #

The players attached to this handler.

is_alive property #

is_alive: bool

Whether the handler is alive or not.

start abstractmethod async #

start() -> None

Start the session handler.

Starts up the session handler and attempts to connect all sessions to their websocket.

stop abstractmethod async #

stop() -> None

Stop the session handler.

Stops the session handler and kills all players and sessions.

add_session abstractmethod #

add_session(session: Session) -> Session

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_session(name: str | None = None) -> 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: str | None DEFAULT: None

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 #

add_player(player: Player) -> Player

Add a player.

Add a new player to the session handler.

PARAMETER DESCRIPTION
player

The player to add to the session handler.

TYPE: Player

RETURNS DESCRIPTION
Player

The player you added to the session handler.

fetch_player abstractmethod #

fetch_player(
    guild: hikari.SnowflakeishOr[hikari.Guild],
) -> Player

Fetch a player.

Fetches an existing player.

PARAMETER DESCRIPTION
guild

The guild, or guild id you wish to fetch the player for.

TYPE: hikari.SnowflakeishOr[hikari.Guild]

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 guild, or guild id you wish to delete the player from.

TYPE: hikari.SnowflakeishOr[hikari.Guild]

RAISES DESCRIPTION
PlayerMissingError

Raised when the player for the specified guild does not exist.