Scheduler
missedDeadline.h
Go to the documentation of this file.
1 
10 #ifndef MISSED_DEADLINE_H
11 #define MISSED_DEADLINE_H
12 
13 #include <memory>
14 
15 #include "event.h"
16 
17 namespace Scheduler
18 {
19 
22 class MissedDeadline : public Event
23 {
24 public:
25  MissedDeadline(double time) : Event(time, false){eventType=missedDeadline;};
26  void process();
27  std::string getName();
28  void print() override;
29 private:
30 
31 };
32 
33 }
34 
35 
36 #endif
void print() override
print information about the event
void process()
handle the the event TODO: &#39;process&#39; is maybe not the best word for that, given that our simulator ac...
TriggeringEvent eventType
The event type is need by the scheduling discipline, to determine if this kind of event triggers invo...
Definition: event.h:64
std::string getName()
get the name of the event
double time
Definition: event.h:58