evt-messaging 0.12.1.1 → 0.12.2.0
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/write/substitute.rb +64 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: edf04d6af1c5401988e9b9dc1e04c512335da2bd
|
4
|
+
data.tar.gz: c013a31f9aba194605b14edbf70d496f048e4188
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e21bcafb52a0ce7ad263e5a97fe5c581687ba816380c32fdcf227e408de399ba896fd1d3b16116e4cf2aa0a0863973240c978ae3f28bf6a43de70d116cf2e87e
|
7
|
+
data.tar.gz: faec568868e826fd213934360148743694df41859b271357b92ef436f4a72304f5d294908553f279d3580013e5c8d42a1c98aa92175dbef33fc57aae9eee390f
|
@@ -29,13 +29,27 @@ module Messaging
|
|
29
29
|
end
|
30
30
|
end
|
31
31
|
|
32
|
-
def written?(&blk)
|
32
|
+
def written?(message=nil, &blk)
|
33
|
+
if message.nil?
|
34
|
+
if blk.nil?
|
35
|
+
return sink.recorded_written?
|
36
|
+
end
|
37
|
+
|
38
|
+
return sink.recorded_written? do |record|
|
39
|
+
blk.call(record.data.message, record.data.stream_name, record.data.expected_version, record.data.reply_stream_name)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
written = sink.recorded_written? do |record|
|
44
|
+
record.data.message == message
|
45
|
+
end
|
46
|
+
|
33
47
|
if blk.nil?
|
34
|
-
return
|
48
|
+
return written
|
35
49
|
end
|
36
50
|
|
37
51
|
sink.recorded_written? do |record|
|
38
|
-
blk.call(record.data.
|
52
|
+
blk.call(record.data.stream_name, record.data.expected_version, record.data.reply_stream_name)
|
39
53
|
end
|
40
54
|
end
|
41
55
|
|
@@ -49,15 +63,59 @@ module Messaging
|
|
49
63
|
end
|
50
64
|
end
|
51
65
|
|
52
|
-
def replied?(&blk)
|
66
|
+
def replied?(message=nil, &blk)
|
67
|
+
# if blk.nil?
|
68
|
+
# return sink.recorded_replied?
|
69
|
+
# end
|
70
|
+
|
71
|
+
# sink.recorded_replied? do |record|
|
72
|
+
# blk.call(record.data.message, record.data.stream_name)
|
73
|
+
# end
|
74
|
+
|
75
|
+
if message.nil?
|
76
|
+
if blk.nil?
|
77
|
+
return sink.recorded_replied?
|
78
|
+
end
|
79
|
+
|
80
|
+
return sink.recorded_replied? do |record|
|
81
|
+
blk.call(record.data.message, record.data.stream_name)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
written = sink.recorded_replied? do |record|
|
86
|
+
record.data.message == message
|
87
|
+
end
|
88
|
+
|
53
89
|
if blk.nil?
|
54
|
-
return
|
90
|
+
return written
|
55
91
|
end
|
56
92
|
|
57
93
|
sink.recorded_replied? do |record|
|
58
|
-
blk.call(record.data.
|
94
|
+
blk.call(record.data.stream_name)
|
59
95
|
end
|
60
96
|
end
|
97
|
+
|
98
|
+
def message_writes(&blk)
|
99
|
+
if blk.nil?
|
100
|
+
return sink.written_records.map { |record| record.data.message }
|
101
|
+
end
|
102
|
+
|
103
|
+
sink.written_records.select do |record|
|
104
|
+
blk.call(record.data.message, record.data.stream_name, record.data.expected_version, record.data.reply_stream_name)
|
105
|
+
end.map { |record| record.data.message }
|
106
|
+
end
|
107
|
+
alias :messages :message_writes
|
108
|
+
|
109
|
+
def message_replies(&blk)
|
110
|
+
if blk.nil?
|
111
|
+
return sink.replied_records.map { |record| record.data.message }
|
112
|
+
end
|
113
|
+
|
114
|
+
sink.replied_records.select do |record|
|
115
|
+
blk.call(record.data.message, record.data.stream_name)
|
116
|
+
end.map { |record| record.data.message }
|
117
|
+
end
|
118
|
+
alias :replies :message_replies
|
61
119
|
end
|
62
120
|
end
|
63
121
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: evt-messaging
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.
|
4
|
+
version: 0.12.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Eventide Project
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-04-
|
11
|
+
date: 2017-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: evt-event_source
|