Source code for betty.dispatch

"""
Provide the Dispatch API.
"""

from typing import Any, Sequence, Callable, Awaitable

TargetedDispatcher = Callable[..., Awaitable[Sequence[Any]]]


[docs] class Dispatcher: """ Dispatch events to handlers. """
[docs] def dispatch(self, target_type: type[Any]) -> TargetedDispatcher: """ Dispatch a single target. """ raise NotImplementedError(repr(self))