Signapse
SchedulableLink.cpp
Go to the documentation of this file.
1#include "SchedulableLink.h"
2#include "BlockingQueue.cpp"
3
4
9 //waits for scenes to appear on the scheduleQueue,
10 while(isOn){
11 Scene s = scheduleQueue.Pop(); //Blocking Queue Sleeps Execution Until Scene arrives
12 Scene out = ProcessScene(s);
13 if(!sceneCallback) continue;
15 }
16}
23}
28 return scheduleQueue.IsEmpty(); //singly threaded for now
29}
30
35 scheduleWorker = std::thread(&SchedulableLink::Run, this);
36}
41 isOn = false;
42 scheduleWorker.join();
43}
49 //if space on schedule queue, add this scene; otherwise pass the scene through
50 if(scheduleQueue.IsEmpty()) { //singly threaded for now
51 scheduleQueue.Push(scene);
52 }
53}
54
void Push(T toPush)
virtual void NextScene(Scene next)=0
Struct Scene.
Definition: Scene.h:36