|
NetBurner 3.5.7
PDF Version |
Base class for objects that require RTOS initialization before use. More...
#include <nbrtos.h>
Public Member Functions | |
| virtual void | Notify ()=0 |
| Called once the RTOS has completed initialization. | |
Base class for objects that require RTOS initialization before use.
Derive from this class when you need to create globally-scoped objects that depend on the RTOS being initialized (e.g. creating tasks, allocating buffers). The pure virtual Notify() method is called automatically once the RTOS internals are fully set up, providing a safe point to perform RTOS-dependent initialization.
|
pure virtual |
Called once the RTOS has completed initialization.
Override this method to perform RTOS-dependent setup such as creating tasks or allocating system buffers.