Robin Mueller
96865c1dd2
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
20 lines
613 B
C++
20 lines
613 B
C++
#ifndef MISSION_TMTC_PERSISTENTTMSTOREWITHTMQUEUE_H_
|
|
#define MISSION_TMTC_PERSISTENTTMSTOREWITHTMQUEUE_H_
|
|
#include <mission/tmtc/PersistentTmStore.h>
|
|
|
|
class PersistentTmStoreWithTmQueue : public AcceptsTelemetryIF {
|
|
public:
|
|
PersistentTmStoreWithTmQueue(StorageManagerIF& tmStore, PersistentTmStore& persistentTmStore,
|
|
uint32_t tmQueueDepth);
|
|
|
|
ReturnValue_t handleNextTm();
|
|
PersistentTmStore& getTmStore();
|
|
|
|
private:
|
|
StorageManagerIF& tmStore;
|
|
MessageQueueIF* tmQueue;
|
|
PersistentTmStore& persistentTmStore;
|
|
};
|
|
|
|
#endif /* MISSION_TMTC_PERSISTENTTMSTOREWITHTMQUEUE_H_ */
|