evt-messaging 2.5.2.0 → 2.5.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/messaging/message/metadata.rb +5 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f7c04e0dec5f4a44a412b02aaa7f4e7c5c1051edd647f521b55d703e525eb752
|
|
4
|
+
data.tar.gz: b179e04fe469d034f8316e669a96d5e763280c79fdc623fd698bae6f68a61b65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bff39401cf18dfea165571dd3780ced69d6747365629331cfb55e82c0227cd41766706909e1cff24b2292d709b0ff03146b3c7034598f28eec0914a3ade22a6
|
|
7
|
+
data.tar.gz: faf8f7669aaba89923a1baa321fe8a0f24f92191cb0d41ecc35830c68d676d9a923845f9ea3fe4193937de28b3947835983655637b8b7bb58fc786c04852dd4b
|
|
@@ -126,7 +126,7 @@ module Messaging
|
|
|
126
126
|
end
|
|
127
127
|
alias :correlates? :correlated?
|
|
128
128
|
|
|
129
|
-
def self.
|
|
129
|
+
def self.source_attribute_names
|
|
130
130
|
[
|
|
131
131
|
:stream_name,
|
|
132
132
|
:position,
|
|
@@ -134,7 +134,7 @@ module Messaging
|
|
|
134
134
|
]
|
|
135
135
|
end
|
|
136
136
|
|
|
137
|
-
def self.
|
|
137
|
+
def self.causation_attribute_names
|
|
138
138
|
[
|
|
139
139
|
:causation_message_stream_name,
|
|
140
140
|
:causation_message_position,
|
|
@@ -142,15 +142,15 @@ module Messaging
|
|
|
142
142
|
]
|
|
143
143
|
end
|
|
144
144
|
|
|
145
|
-
def self.
|
|
145
|
+
def self.origin_attribute_names
|
|
146
146
|
[
|
|
147
147
|
:correlation_stream_name,
|
|
148
148
|
:reply_stream_name
|
|
149
149
|
]
|
|
150
150
|
end
|
|
151
151
|
|
|
152
|
-
def self.
|
|
153
|
-
|
|
152
|
+
def self.workflow_attribute_names
|
|
153
|
+
causation_attribute_names + origin_attribute_names
|
|
154
154
|
end
|
|
155
155
|
|
|
156
156
|
def self.transient_attributes
|