Skip to main content

PlatformEventManager

A class for managing Actor events.

You shouldn't use this class directly, but instead use it via the Actor.on() and Actor.off() methods.

Index

Methods

__aenter__

  • async __aenter__(): Self
  • Returns Self

__aexit__

  • async __aexit__(*, exc_type, exc_value, exc_traceback): None
  • Parameters

    • optionalkeyword-onlyexc_type: type[BaseException] | None
    • optionalkeyword-onlyexc_value: BaseException | None
    • optionalkeyword-onlyexc_traceback: TracebackType | None

    Returns None

__init__

  • __init__(*, config, kwargs): None
  • Create an instance of the EventManager.


    Parameters

    • optionalkeyword-onlyconfig: Configuration

      The Actor configuration to be used in this event manager.

    Returns None

Page Options