startHeartbeatMonitoring method
void
startHeartbeatMonitoring()
Start heartbeat monitoring for all devices, incl. the phone, for the deployment controlled by this controller.
Implementation
void startHeartbeatMonitoring() {
for (var configuration in deployment!.devices) {
deviceRegistry
.getDevice(configuration.type)
?.startHeartbeatMonitoring(this);
}
}