fastcs.methods.method#

Members

Controller_T

Generic Controller class that an unbound method must be called with as self

Method

Generic base class for all FastCS Controller methods.

MethodCallback

Generic protocol for all Controller Method callbacks

fastcs.methods.method.MethodCallback#

Generic protocol for all Controller Method callbacks

alias of Callable[[…], Coroutine[None, None, None]]

class fastcs.methods.method.Controller_T#

Generic Controller class that an unbound method must be called with as self

alias of TypeVar(‘Controller_T’, bound=BaseController)

class fastcs.methods.method.Method(fn: Callable[[...], Coroutine[None, None, None]], *, group: str | None = None)[source]#

Generic base class for all FastCS Controller methods.