IStateful.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_ISTATEFUL_H
2 #define GAUDIKERNEL_ISTATEFUL_H
3 
4 // Include Files
7 #include <string>
8 
16 class GAUDI_API IStateful: virtual public IInterface {
17 public:
20 
23  virtual StatusCode configure() = 0;
24 
27  virtual StatusCode initialize() = 0;
28 
31  virtual StatusCode start() = 0;
32 
35  virtual StatusCode stop() = 0;
36 
39  virtual StatusCode finalize() = 0;
40 
43  virtual StatusCode terminate() = 0;
44 
45 
48  virtual StatusCode reinitialize() = 0;
49 
52  virtual StatusCode restart() = 0;
53 
56  virtual Gaudi::StateMachine::State FSMState() const = 0;
57 
61  virtual Gaudi::StateMachine::State targetFSMState() const = 0;
62 
63 };
64 
65 #endif // GAUDIKERNEL_ISTATEFUL_H
#define DeclareInterfaceID(iface, major, minor)
Macro to declare the interface ID when using the new mechanism of extending and implementing interfac...
Definition: IInterface.h:14
State
Allowed states for classes implementing the state machine (ApplicationMgr, Algorithm, Service, AlgTool).
Definition: StateMachine.h:12
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
Definition of the basic interface.
Definition: IInterface.h:234
start
Definition: IOTest.py:88
Interface for classes that implement the Gaudi State Machine.
Definition: IStateful.h:16
#define GAUDI_API
Definition: Kernel.h:107