BPMN-OS
BPMN for optimization and simulation
Loading...
Searching...
No Matches
TerminationEvent.cpp
Go to the documentation of this file.
1#include "TerminationEvent.h"
3
4using namespace BPMNOS::Execution;
5
10
12 engine->process(this);
13}
14
15nlohmann::ordered_json TerminationEvent::jsonify() const {
16 nlohmann::ordered_json jsonObject;
17
18 jsonObject["event"] = "termination";
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