orchestrator
borealis.orchestrator
Orchestrator()
Session orchestrator, keeps track of components and manages communication between them.
Source code in borealis/orchestrator.py
14 15 16 17 | |
add_controller_component(component)
Adds a component to the mediator.
Source code in borealis/orchestrator.py
24 25 26 27 28 29 30 | |
add_data_component(component)
Adds a component to the mediator.
Source code in borealis/orchestrator.py
19 20 21 22 | |
add_sensor_component(component)
Adds a component to the mediator.
Source code in borealis/orchestrator.py
32 33 34 35 36 37 38 | |
notify(sender, message, **kwargs)
Notifies all components with the message.
Source code in borealis/orchestrator.py
66 67 68 69 70 71 72 73 74 75 76 | |