31 std::cout << name() <<
": " The Process Manager class.
Manager & schedule(Process &process, high_resolution_clock::duration period)
void init()
Nothing to do to initialize.
void start()
Nothing to do to start.
Manager & run(high_resolution_clock::duration runtime)
Example: A very basic process class. See the file examples/basic.cc for usage.
void stop()
Nothing to do to stop.
BasicProcess(std::string name)
void update()
The update method just prints out some useful information.
An abstract base class for processes.