Signapse
SchedulableLink.h
Go to the documentation of this file.
1#ifndef SIGNAPSE_SCHEDULABLESCENELINKER_H
2#define SIGNAPSE_SCHEDULABLESCENELINKER_H
3
4#include <thread>
5#include <chrono>
6#include <ctime>
7
8#include "PipelineLink.h"
9#include "BlockingQueue.h"
10
11
18public:
19 void NextScene(Scene s);
20 virtual Scene ProcessScene(Scene s) = 0;
21 void Start();
22 void Stop();
23 bool Available();
24protected:
25 void Enqueue(Scene s);
26 void Run();
28 bool isOn = true;
29 std::thread scheduleWorker;
30};
31
32
33#endif //SIGNAPSE_SCHEDULABLESCENELINKER_H
Struct Scene.
Definition: Scene.h:36