orchestrator
borealis.orchestrator
Orchestrator()
Session orchestrator, keeps track of components and manages communication between them.
Source code in borealis/orchestrator.py
12 13 14 15 | |
add_controller_component(component)
Adds a component to the mediator.
Source code in borealis/orchestrator.py
17 18 19 20 21 22 23 24 25 | |
add_data_component(component)
Adds a component to the mediator.
Source code in borealis/orchestrator.py
37 38 39 40 | |
add_sensor_component(component)
Adds a component to the mediator.
Source code in borealis/orchestrator.py
27 28 29 30 31 32 33 34 35 | |
notify(sender, message, **kwargs)
Notifies all components with the message.
Source code in borealis/orchestrator.py
48 49 50 51 52 53 54 55 56 57 58 | |