module documentation
(source)

Plugin-based system for enumerating available reactors and installing one of them.
Interface ​IReactor​Installer Definition of a reactor which can probably be installed.
Class ​No​Such​Reactor Raised when an attempt is made to install a reactor which cannot be found.
Class ​Reactor
Function get​Reactor​Types Return an iterator of IReactorInstaller plugins.
Function install​Reactor Install the reactor with the given shortName attribute.
def getReactorTypes(): (source)
Return an iterator of IReactorInstaller plugins.
Returns
Iterable[IReactorInstaller]Undocumented
def installReactor(shortName): (source)
Install the reactor with the given shortName attribute.
Parameters
short​Name:strUndocumented
Returns
IReactorCoreUndocumented
Raises
NoSuchReactorIf no reactor is found with a matching shortName.
ExceptionAnything that the specified reactor can raise when installed.