25 template <
typename BC>
75 using TimePoint = std::chrono::time_point<std::chrono::high_resolution_clock>;
78 std::chrono::milliseconds duration_{};
Enums for observer messages.
Implementation of the observer design pattern with broadcasters.
ControlMessages
Enum class defining control-routine-related messages.
Definition: broadcastermessages.hh:17
Definition: assemblermanipulatorbuildingblocks.hh:22
ControlLogger class for logging control messages.
Definition: controllogger.hh:23
ControlLogger & subscribeTo(BC &bc)
Definition: controllogger.hh:26
void updateImpl(ControlMessages message, int val1, const std::string &val2)
Implementation of the update method for logging control messages with an integer and a string value.
void updateImpl(ControlMessages message, int val1, double val2)
Implementation of the update method for logging control messages with an integer and a double value.
void updateImpl(ControlMessages message, const std::string &val)
Implementation of the update method for logging control messages with string values.
void updateImpl(ControlMessages message, const Concepts::ControlRoutineState auto &state)
Implementation of the update method for logging control messages with a control routine state.
Definition: controllogger.hh:72
void updateImpl(ControlMessages message)
Implementation of the update method for control message logging.
Definition: listener.hh:27
auto subscribe(Broadcaster &broadcaster, F &&f)
Function to subscribe to a broadcaster with a given function (either a lambda, std::function or funct...
Definition: listener.hh:43
Definition: utils/concepts.hh:634