SST  15.1.0
StructuralSimulationToolkit
action.h
1 // Copyright 2009-2025 NTESS. Under the terms
2 // of Contract DE-NA0003525 with NTESS, the U.S.
3 // Government retains certain rights in this software.
4 //
5 // Copyright (c) 2009-2025, NTESS
6 // All rights reserved.
7 //
8 // This file is part of the SST software package. For license
9 // information, see the LICENSE file in the top level directory of the
10 // distribution.
11 
12 #ifndef SST_CORE_ACTION_H
13 #define SST_CORE_ACTION_H
14 
15 #include "sst/core/activity.h"
16 #include "sst/core/output.h"
17 #include "sst/core/serialization/serializer.h"
18 
19 #include <cinttypes>
20 
21 namespace SST {
22 
23 /**
24  * An Action is a schedulable Activity which is not an Event.
25  */
26 class Action : public Activity
27 {
28 public:
29  Action() {}
30  ~Action() {}
31 
32  bool isEvent() const override final { return false; }
33  bool isAction() const override final { return true; }
34 
35 protected:
36  /** Called to signal to the Simulation object to end the simulation */
37  void endSimulation();
38 
39  /** Called to signal to the Simulation object to end the simulation
40  * @param end Simulation cycle when the simulation finishes
41  */
42  void endSimulation(SimTime_t end);
43 
44  void serialize_order(SST::Core::Serialization::serializer& ser) override;
45  ImplementVirtualSerializable(SST::Action)
46 };
47 
48 } // namespace SST
49 
50 #endif // SST_CORE_ACTION_H
An Action is a schedulable Activity which is not an Event.
Definition: action.h:26
This class is basically a wrapper for objects to declare the order in which their members should be s...
Definition: serializer.h:42
Base class for all Activities in the SST Event Queue.
Definition: activity.h:47
Definition: action.cc:18
void endSimulation()
Called to signal to the Simulation object to end the simulation.
Definition: action.cc:21