BPMN-OS
BPMN for optimization and simulation
Loading...
Searching...
No Matches
ClockTickEvent.cpp
Go to the documentation of this file.
1#include "ClockTickEvent.h"
3
4using namespace BPMNOS::Execution;
5
10
11void ClockTickEvent::processBy(Engine* engine) const {
12 engine->process(this);
13}
14
15nlohmann::ordered_json ClockTickEvent::jsonify() const {
16 nlohmann::ordered_json jsonObject;
17
18 jsonObject["event"] = "clocktick";
19
20 return jsonObject;
21}
void process(const ReadyEvent *event)
Definition Engine.cpp:129
void processBy(Engine *engine) const override
nlohmann::ordered_json jsonify() const override