$callStart static method
Implementation
static Future<void> $callStart(
Node node, NodeStorage storage, PrecisionStopwatch wallClock) async {
if (node is Lifecycle) {
if ((node as Lifecycle).$isRunning == true) {
node.logger
.warn("Node is already running? Call start was called twice?");
}
await (node as Lifecycle).onStart();
node.$metadata["lifecycle.running"] = true;
node.logger.info(
"Started in ${wallClock.getMilliseconds().toStringAsFixed(0)}ms");
}
}