F´ Flight Software - C/C++ Documentation
devel
A framework for building embedded system applications to NASA flight quality standards.
|
queue registry interface More...
#include <Os/Queue.hpp>
Public Member Functions | |
QueueRegistry ()=default | |
Default QueueRegistry. More... | |
virtual | ~QueueRegistry ()=default |
Default ~QueueRegistry. More... | |
virtual void | registerQueue (Queue *queue)=0 |
queue registry callback More... | |
queue registry interface
The QueueRegistry is used to track queues in the system. There is intended to be a single, global, queue registry across the system. It is used to track queues and will receive a callback on the creation of each queue.
|
default |
Default QueueRegistry.
|
virtualdefault |
Default ~QueueRegistry.
|
pure virtual |
queue registry callback
Register the queue with this queue registry. Must be implemented by QueueRegistry implementations.
queue | queue being registered method called by queue init() methods to register a new queue |