File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,16 @@ namespace multio::message {
9
9
10
10
static std::string PARAMETRIZATION_PAYLOAD_KEY = " payloadKey" ;
11
11
12
+ /* * Global singleton metadata object that contains information that may be send once at the beginning of a run
13
+ *
14
+ * Important: Key-value pairs are ment to be constant. It is possible to update a key with the same value multiple times.
15
+ * However, to enforce consistency a key can not be updated with a different value - this will throw an exception to
16
+ * notify about inconsistency.
17
+ *
18
+ * This singleton object is shared accross multiple multio instances (e.g. IFS and NEMO). Hence it is assumed that
19
+ * all global key-value pairs of different models are exclusive to each other or contain the same value.
20
+ *
21
+ */
12
22
class Parametrization {
13
23
public:
14
24
Parametrization () = default ;
You can’t perform that action at this time.
0 commit comments