module documentation

Plugin-based system for enumerating available reactors and installing one of them.

Interface IReactorInstaller Definition of a reactor which can probably be installed.
Class Reactor No summary
Exception NoSuchReactor Raised when an attempt is made to install a reactor which cannot be found.
Function getReactorTypes Return an iterator of IReactorInstaller plugins.
Function installReactor Install the reactor with the given shortName attribute.
def getReactorTypes() -> Iterable[IReactorInstaller]: (source)

Return an iterator of IReactorInstaller plugins.

def installReactor(shortName: str) -> IReactorCore: (source)

Install the reactor with the given shortName attribute.

Raises
NoSuchReactorIf no reactor is found with a matching shortName.
ExceptionAnything that the specified reactor can raise when installed.