nodo 0.18.5

A realtime framework for robotics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2024 David Weikersdorfer

use crate::prelude::ParameterSet;

#[derive(Debug, Clone)]
pub enum RuntimeControl {
    /// Request the runtime to stop. It may take a while for the runtime to shut down as codelets
    /// will finish stepping and stop will be called for all active codelets.
    RequestStop,

    /// Requests a configuration change. Configuration changes will be applied after codelet step.
    Configure(ParameterSet<String, String>),
}