rservicebus2 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rservicebus2/agent.rb +5 -2
- data/lib/rservicebus2/appresource.rb +1 -1
- data/lib/rservicebus2/appresource_configure.rb +8 -4
- data/lib/rservicebus2/audit.rb +4 -2
- data/lib/rservicebus2/config.rb +3 -0
- data/lib/rservicebus2/helper_functions.rb +7 -3
- data/lib/rservicebus2/host.rb +58 -119
- data/lib/rservicebus2/monitor_configure.rb +1 -1
- data/lib/rservicebus2/saga/manager.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7cf46f6455ed14f25642855bd4839b0c910447bb07007bdb2dba0c9a65b7f4d0
|
4
|
+
data.tar.gz: 5ef71ec901e2d142d731d2dd8be176b297116ef8b6b07ab182c295496f1dfd85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35999f1a63cf911f2dc2d2d9580dc3afd26f70203db43bf7c58ee079606bb318246e292ffd382ceadfe4747d37a826a0784b3407d611c1957d61b7ea266aef05
|
7
|
+
data.tar.gz: c19a66ce0e83b4c2ae617ed0e8b9827f91cf31c9820e7f0e8ba5f405f83792b097e5ed0bd9769faf331bd15c4bdfeaf9748cea40677c29e050f4f3d1d6e58815
|
data/lib/rservicebus2/agent.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module RServiceBus2
|
2
4
|
class QueueNotFoundForMsg < StandardError
|
3
5
|
end
|
@@ -22,9 +24,9 @@ module RServiceBus2
|
|
22
24
|
# @param [Object] messageObj The msg to be sent
|
23
25
|
# @param [String] queueName the name of the queue to be send the msg to
|
24
26
|
# @param [String] returnAddress the name of a queue to send replies to
|
25
|
-
# rubocop:disable Metrics/
|
27
|
+
# rubocop:disable Metrics/MethodLength
|
26
28
|
def send_msg(message_obj, queue_name, return_address = nil)
|
27
|
-
|
29
|
+
raise QueueNotFoundForMsg, message_obj.class.name if queue_name.nil?
|
28
30
|
|
29
31
|
msg = RServiceBus2::Message.new(message_obj, return_address)
|
30
32
|
if queue_name.index('@').nil?
|
@@ -40,6 +42,7 @@ module RServiceBus2
|
|
40
42
|
|
41
43
|
@mq.send(q, serialized_object)
|
42
44
|
end
|
45
|
+
# rubocop:enable Metrics/MethodLength
|
43
46
|
|
44
47
|
# Gives an agent the means to receive a reply
|
45
48
|
#
|
@@ -1,12 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'uri'
|
2
4
|
|
3
5
|
module RServiceBus2
|
4
6
|
# Configure AppResources for an rservicebus host
|
5
7
|
class ConfigureAppResource
|
6
|
-
# rubocop:disable Metrics/AbcSize,Metrics/MethodLength,CyclomaticComplexity
|
8
|
+
# rubocop:disable Metrics/AbcSize,Metrics/MethodLength,Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity
|
7
9
|
def get_resources(env, host, state_manager, saga_storage)
|
8
|
-
# rm = resource_manager
|
9
10
|
rm = ResourceManager.new(state_manager, saga_storage)
|
11
|
+
# rubocop:disable Metrics/BlockLength
|
10
12
|
env.each do |k, v|
|
11
13
|
if v.is_a?(String) && k.start_with?('RSBFDB2_')
|
12
14
|
uri = URI.parse(v)
|
@@ -15,8 +17,8 @@ module RServiceBus2
|
|
15
17
|
k = k.sub('RSBFDB2_', '')
|
16
18
|
rm.add k, AppResourceFluidDb2.new(host, uri)
|
17
19
|
elsif v.is_a?(String) &&
|
18
|
-
(k.start_with?('RSBFDB_') || v.
|
19
|
-
v = v['fluiddb'.length..-1] if v.
|
20
|
+
(k.start_with?('RSBFDB_') || v.start_with?('fluiddb'))
|
21
|
+
v = v['fluiddb'.length..-1] if v.start_with?('fluiddb')
|
20
22
|
uri = URI.parse(v)
|
21
23
|
require 'rservicebus2/appresource/fluiddb'
|
22
24
|
|
@@ -46,8 +48,10 @@ module RServiceBus2
|
|
46
48
|
end
|
47
49
|
end
|
48
50
|
end
|
51
|
+
# rubocop:enable Metrics/BlockLength
|
49
52
|
|
50
53
|
rm
|
51
54
|
end
|
55
|
+
# rubocop:enable Metrics/AbcSize,Metrics/MethodLength,Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity
|
52
56
|
end
|
53
57
|
end
|
data/lib/rservicebus2/audit.rb
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module RServiceBus2
|
2
4
|
# Audit Class
|
3
5
|
class Audit
|
4
|
-
def initialize(
|
5
|
-
@mq =
|
6
|
+
def initialize(message_queue)
|
7
|
+
@mq = message_queue
|
6
8
|
audit_queue_name = RServiceBus2.get_value('AUDIT_QUEUE_NAME')
|
7
9
|
if audit_queue_name.nil?
|
8
10
|
@sent_messages_to = RServiceBus2.get_value('sent_messages_to')
|
data/lib/rservicebus2/config.rb
CHANGED
@@ -154,11 +154,14 @@ module RServiceBus2
|
|
154
154
|
|
155
155
|
# Class
|
156
156
|
class ConfigFromEnv < Config
|
157
|
+
def initialize; end;
|
157
158
|
end
|
158
159
|
|
159
160
|
# Class
|
160
161
|
class ConfigFromSetter < Config
|
161
162
|
attr_writer :app_name, :message_endpoint_mappings, :handler_path_list, :error_queue_name, \
|
162
163
|
:max_retries, :forward_received_messages_to, :beanstalk_host
|
164
|
+
|
165
|
+
def initialize; end;
|
163
166
|
end
|
164
167
|
end
|
@@ -1,3 +1,6 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Helper functions
|
1
4
|
module RServiceBus2
|
2
5
|
def self.convert_dto_to_hash(obj)
|
3
6
|
hash = {}
|
@@ -35,7 +38,7 @@ module RServiceBus2
|
|
35
38
|
end
|
36
39
|
|
37
40
|
def self.get_value(name, default = nil)
|
38
|
-
value =
|
41
|
+
value = ENV[name].nil? || ENV[name] == '' ? default : ENV[name]
|
39
42
|
log "Env value: #{name}: #{value}"
|
40
43
|
value
|
41
44
|
end
|
@@ -50,7 +53,6 @@ module RServiceBus2
|
|
50
53
|
agent = RServiceBus2::Agent.new
|
51
54
|
Audit.new(agent).audit_to_queue(msg)
|
52
55
|
agent.send_msg(msg, queue_name, response_queue)
|
53
|
-
|
54
56
|
rescue QueueNotFoundForMsg => e
|
55
57
|
msg = "\n"
|
56
58
|
msg = "#{msg}*** Queue not found for, #{e.message}\n"
|
@@ -76,10 +78,12 @@ module RServiceBus2
|
|
76
78
|
|
77
79
|
def self.check_environment_variable(string)
|
78
80
|
return false if ENV[string].nil?
|
81
|
+
return false if ENV[string] == ''
|
79
82
|
return true if ENV[string] == true || ENV[string] =~ (/(true|t|yes|y|1)$/i)
|
80
83
|
return false if ENV[string] == false ||
|
81
84
|
ENV[string].nil? ||
|
82
85
|
ENV[string] =~ (/(false|f|no|n|0)$/i)
|
83
|
-
|
86
|
+
|
87
|
+
raise ArgumentError, "invalid value for Environment Variable: \"#{string}\""
|
84
88
|
end
|
85
89
|
end
|
data/lib/rservicebus2/host.rb
CHANGED
@@ -1,10 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module RServiceBus2
|
2
4
|
class NoHandlerFound < StandardError
|
3
5
|
end
|
6
|
+
|
4
7
|
class ClassNotFoundForMsg < StandardError
|
5
8
|
end
|
9
|
+
|
6
10
|
class NoMsgToProcess < StandardError
|
7
11
|
end
|
12
|
+
|
8
13
|
class PropertyNotSet < StandardError
|
9
14
|
end
|
10
15
|
|
@@ -14,9 +19,8 @@ module RServiceBus2
|
|
14
19
|
|
15
20
|
# Provides a thin logging veneer
|
16
21
|
# @param [String] string Log entry
|
17
|
-
|
18
|
-
|
19
|
-
RServiceBus2.log(string, ver)
|
22
|
+
def log(string)
|
23
|
+
RServiceBus2.log(string)
|
20
24
|
end
|
21
25
|
|
22
26
|
# Thin veneer for Configuring external resources
|
@@ -26,19 +30,6 @@ module RServiceBus2
|
|
26
30
|
self,
|
27
31
|
@state_manager,
|
28
32
|
@saga_storage)
|
29
|
-
self
|
30
|
-
end
|
31
|
-
|
32
|
-
# Thin veneer for Configuring SendAt
|
33
|
-
def configure_send_at_manager
|
34
|
-
@send_at_manager = SendAtManager.new(self)
|
35
|
-
self
|
36
|
-
end
|
37
|
-
|
38
|
-
# Thin veneer for Configuring state
|
39
|
-
def configure_state_manager
|
40
|
-
@state_manager = StateManager.new
|
41
|
-
self
|
42
33
|
end
|
43
34
|
|
44
35
|
# Thin veneer for Configuring state
|
@@ -48,25 +39,6 @@ module RServiceBus2
|
|
48
39
|
|
49
40
|
uri = URI.parse(string)
|
50
41
|
@saga_storage = SagaStorage.get(uri)
|
51
|
-
self
|
52
|
-
end
|
53
|
-
|
54
|
-
# Thin veneer for Configuring Cron
|
55
|
-
def configure_circuit_breaker
|
56
|
-
@circuit_breaker = CircuitBreaker.new(self)
|
57
|
-
self
|
58
|
-
end
|
59
|
-
|
60
|
-
# Thin veneer for Configuring external resources
|
61
|
-
def configure_monitors
|
62
|
-
@monitors = ConfigureMonitor.new(self, @resource_manager).get_monitors(ENV)
|
63
|
-
self
|
64
|
-
end
|
65
|
-
|
66
|
-
# Thin veneer for Configuring the Message Queue
|
67
|
-
def connect_to_mq
|
68
|
-
@mq = MQ.get
|
69
|
-
self
|
70
42
|
end
|
71
43
|
|
72
44
|
# Subscriptions are specified by adding events to the
|
@@ -77,8 +49,6 @@ module RServiceBus2
|
|
77
49
|
@endpoint_mapping.subscription_endpoints.each do |event_name|
|
78
50
|
subscribe(event_name)
|
79
51
|
end
|
80
|
-
|
81
|
-
self
|
82
52
|
end
|
83
53
|
|
84
54
|
# Load and configure Message Handlers
|
@@ -90,8 +60,6 @@ module RServiceBus2
|
|
90
60
|
@config.handler_path_list.each do |path|
|
91
61
|
@handler_loader.load_handlers_from_path(path)
|
92
62
|
end
|
93
|
-
|
94
|
-
self
|
95
63
|
end
|
96
64
|
|
97
65
|
# Load and configure Sagas
|
@@ -103,14 +71,6 @@ module RServiceBus2
|
|
103
71
|
@config.saga_path_list.each do |path|
|
104
72
|
@saga_loader.load_sagas_from_path(path)
|
105
73
|
end
|
106
|
-
|
107
|
-
self
|
108
|
-
end
|
109
|
-
|
110
|
-
# Thin veneer for Configuring Cron
|
111
|
-
def configure_cron_manager
|
112
|
-
@cron_manager = CronManager.new(self, @handler_manager.msg_names)
|
113
|
-
self
|
114
74
|
end
|
115
75
|
|
116
76
|
# Load Contracts
|
@@ -121,62 +81,50 @@ module RServiceBus2
|
|
121
81
|
require path
|
122
82
|
RServiceBus2.rlog "Loaded Contract: #{path}"
|
123
83
|
end
|
124
|
-
|
125
|
-
self
|
126
84
|
end
|
127
85
|
|
128
86
|
# For each directory given, find and load all librarys
|
129
87
|
def load_libs
|
130
88
|
log 'Load Libs'
|
131
89
|
@config.lib_list.each do |path|
|
132
|
-
|
90
|
+
$LOAD_PATH.unshift path
|
133
91
|
end
|
134
|
-
|
135
|
-
self
|
136
92
|
end
|
137
93
|
|
138
94
|
# Load, configure and initialise Subscriptions
|
139
95
|
def configure_subscriptions
|
140
96
|
subscription_storage = ConfigureSubscriptionStorage.new.get(@config.app_name, @config.subscription_uri)
|
141
97
|
@subscription_manager = SubscriptionManager.new(subscription_storage)
|
142
|
-
self
|
143
|
-
end
|
144
|
-
|
145
|
-
# Initialise statistics monitor
|
146
|
-
def configure_statistics
|
147
|
-
@stats = StatisticManager.new( self )
|
148
|
-
self
|
149
98
|
end
|
150
99
|
|
151
100
|
def initialize
|
152
101
|
RServiceBus2.rlog "Current directory: #{Dir.pwd}"
|
153
|
-
@config = ConfigFromEnv.new
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
102
|
+
@config = ConfigFromEnv.new
|
103
|
+
.load_host_section
|
104
|
+
.load_contracts
|
105
|
+
.load_handler_path_list
|
106
|
+
.load_saga_path_list
|
107
|
+
.load_libs
|
108
|
+
.load_working_dir_list
|
159
109
|
|
160
|
-
|
110
|
+
@mq = MQ.get
|
161
111
|
|
162
112
|
@endpoint_mapping = EndpointMapping.new.configure(@mq.local_queue_name)
|
163
113
|
|
164
|
-
self
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
self
|
114
|
+
@stats = StatisticManager.new(self)
|
115
|
+
load_contracts
|
116
|
+
load_libs
|
117
|
+
@send_at_manager = SendAtManager.new(self)
|
118
|
+
@state_manager = StateManager.new
|
119
|
+
configure_saga_storage
|
120
|
+
configure_app_resource
|
121
|
+
@circuit_breaker = CircuitBreaker.new(self)
|
122
|
+
@monitors = ConfigureMonitor.new(self, @resource_manager).get_monitors(ENV)
|
123
|
+
load_handlers
|
124
|
+
load_sagas
|
125
|
+
@cron_manager = CronManager.new(self, @handler_manager.msg_names)
|
126
|
+
configure_subscriptions
|
127
|
+
send_subscriptions
|
180
128
|
end
|
181
129
|
|
182
130
|
# Ignition
|
@@ -185,10 +133,10 @@ module RServiceBus2
|
|
185
133
|
log "Watching, #{@mq.local_queue_name}"
|
186
134
|
$0 = "rservicebus - #{@mq.local_queue_name}"
|
187
135
|
unless @config.forward_received_messages_to.nil?
|
188
|
-
log
|
136
|
+
log "Forwarding all received messages to: #{@config.forward_received_messages_to}"
|
189
137
|
end
|
190
138
|
unless @config.forward_sent_messages_to.nil?
|
191
|
-
log
|
139
|
+
log "Forwarding all sent messages to: #{@config.forward_sent_messages_to}"
|
192
140
|
end
|
193
141
|
|
194
142
|
start_listening_to_endpoints
|
@@ -258,7 +206,6 @@ module RServiceBus2
|
|
258
206
|
_send_already_wrapped_and_serialised(serialized_object,
|
259
207
|
@config.error_queue_name)
|
260
208
|
@mq.ack
|
261
|
-
|
262
209
|
rescue PropertyNotSet => e
|
263
210
|
# This has been re-rasied from a rescue in the handler
|
264
211
|
puts "*** #{e.message}"
|
@@ -266,7 +213,6 @@ module RServiceBus2
|
|
266
213
|
property_name = e.message[10, e.message.index(',', 10) - 10]
|
267
214
|
puts "*** Ensure the environment variable, RSB_#{property_name},
|
268
215
|
has been set at startup."
|
269
|
-
|
270
216
|
rescue StandardError => e
|
271
217
|
sleep 0.5
|
272
218
|
|
@@ -275,7 +221,7 @@ module RServiceBus2
|
|
275
221
|
puts e.backtrace
|
276
222
|
puts '***'
|
277
223
|
|
278
|
-
if retries
|
224
|
+
if retries.positive?
|
279
225
|
retries -= 1
|
280
226
|
@mq.return_to_queue
|
281
227
|
else
|
@@ -293,7 +239,7 @@ module RServiceBus2
|
|
293
239
|
abort
|
294
240
|
end
|
295
241
|
|
296
|
-
error_string = e.message
|
242
|
+
error_string = "#{e.message}. #{e.backtrace.join('. ')}"
|
297
243
|
@msg.add_error_msg(@mq.local_queue_name, error_string)
|
298
244
|
serialized_object = YAML.dump(@msg)
|
299
245
|
_send_already_wrapped_and_serialised(serialized_object, @config.error_queue_name)
|
@@ -318,7 +264,6 @@ module RServiceBus2
|
|
318
264
|
|
319
265
|
@send_at_manager.process
|
320
266
|
@circuit_breaker.success
|
321
|
-
|
322
267
|
rescue StandardError => e
|
323
268
|
if e.message == 'SIGTERM' || e.message == 'SIGINT'
|
324
269
|
puts 'Exiting on request ...'
|
@@ -326,7 +271,7 @@ module RServiceBus2
|
|
326
271
|
else
|
327
272
|
puts '*** This is really unexpected.'
|
328
273
|
message_loop = false
|
329
|
-
puts
|
274
|
+
puts "Message: #{e.message}"
|
330
275
|
puts e.backtrace
|
331
276
|
end
|
332
277
|
end
|
@@ -338,33 +283,29 @@ module RServiceBus2
|
|
338
283
|
@resource_manager.begin
|
339
284
|
msg_name = @msg.msg.class.name
|
340
285
|
handler_list = @handler_manager.get_handler_list_for_msg(msg_name)
|
341
|
-
RServiceBus2.rlog
|
286
|
+
RServiceBus2.rlog "Handler found for: #{msg_name}"
|
342
287
|
begin
|
343
288
|
@queue_for_msgs_to_be_sent_on_complete = []
|
344
289
|
|
345
290
|
log "Started processing msg, #{msg_name}"
|
346
291
|
handler_list.each do |handler|
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
raise e
|
357
|
-
end
|
292
|
+
log "Handler, #{handler.class.name}, Started"
|
293
|
+
handler.handle(@msg.msg)
|
294
|
+
log "Handler, #{handler.class.name}, Finished"
|
295
|
+
rescue PropertyNotSet => e
|
296
|
+
raise PropertyNotSet, "Property, #{e.message}, not set for, #{handler.class.name}"
|
297
|
+
rescue StandardError => e
|
298
|
+
puts "E #{e.message}"
|
299
|
+
log "An error occurred in Handler: #{handler.class.name}"
|
300
|
+
raise e
|
358
301
|
end
|
359
302
|
|
360
|
-
if @saga_manager.handle(@msg) == false && handler_list.length
|
361
|
-
|
362
|
-
end
|
303
|
+
raise NoHandlerFound, msg_name if @saga_manager.handle(@msg) == false && handler_list.length.zero?
|
304
|
+
|
363
305
|
@resource_manager.commit(msg_name)
|
364
306
|
|
365
307
|
send_queued_msgs
|
366
308
|
log "Finished processing msg, #{msg_name}"
|
367
|
-
|
368
309
|
rescue StandardError => e
|
369
310
|
@resource_manager.rollback(msg_name)
|
370
311
|
@queue_for_msgs_to_be_sent_on_complete = nil
|
@@ -381,9 +322,7 @@ module RServiceBus2
|
|
381
322
|
def _send_already_wrapped_and_serialised(serialized_object, queue_name)
|
382
323
|
RServiceBus2.rlog 'Bus._send_already_wrapped_and_serialised'
|
383
324
|
|
384
|
-
unless @config.forward_sent_messages_to.nil?
|
385
|
-
@mq.send(@config.forward_sent_messages_to, serialized_object)
|
386
|
-
end
|
325
|
+
@mq.send(@config.forward_sent_messages_to, serialized_object) unless @config.forward_sent_messages_to.nil?
|
387
326
|
|
388
327
|
@mq.send(queue_name, serialized_object)
|
389
328
|
end
|
@@ -422,8 +361,9 @@ module RServiceBus2
|
|
422
361
|
|
423
362
|
def queue_msg_for_send_on_complete(msg, queue_name, timestamp = nil)
|
424
363
|
correlation_id = @saga_data.nil? ? nil : @saga_data.correlation_id
|
425
|
-
correlation_id =
|
426
|
-
@queue_for_msgs_to_be_sent_on_complete <<
|
364
|
+
correlation_id = !@msg.nil? && !@msg.correlation_id.nil? ? @msg.correlation_id : correlation_id
|
365
|
+
@queue_for_msgs_to_be_sent_on_complete <<
|
366
|
+
Hash['msg', msg, 'queue_name', queue_name, 'correlation_id', correlation_id, 'timestamp', timestamp]
|
427
367
|
end
|
428
368
|
|
429
369
|
# Sends a msg back across the bus
|
@@ -431,7 +371,7 @@ module RServiceBus2
|
|
431
371
|
# email, where the reply address can actually be anywhere
|
432
372
|
# @param [RServiceBus2::Message] msg msg to be sent
|
433
373
|
def reply(msg)
|
434
|
-
RServiceBus2.rlog
|
374
|
+
RServiceBus2.rlog "Reply with: #{msg.class.name} To: #{@msg.return_address}"
|
435
375
|
@stats.inc_total_reply
|
436
376
|
|
437
377
|
queue_msg_for_send_on_complete(msg, @msg.return_address)
|
@@ -443,21 +383,20 @@ module RServiceBus2
|
|
443
383
|
|
444
384
|
return @mq.local_queue_name if @handler_manager.can_msg_be_handled_locally(msg_name)
|
445
385
|
|
446
|
-
log
|
447
|
-
log
|
448
|
-
raise
|
386
|
+
log "No end point mapping found for: #{msg_name}"
|
387
|
+
log "**** Check environment variable MessageEndpointMappings contains an entry named: #{msg_name}"
|
388
|
+
raise "No end point mapping found for: #{msg_name}"
|
449
389
|
end
|
450
390
|
|
451
|
-
|
452
391
|
# Send a msg across the bus
|
453
392
|
# msg destination is specified at the infrastructure level
|
454
393
|
# @param [RServiceBus2::Message] msg msg to be sent
|
455
|
-
def send(
|
394
|
+
def send(msg, timestamp = nil)
|
456
395
|
RServiceBus2.rlog 'Bus.Send'
|
457
396
|
@stats.inc_total_sent
|
458
397
|
|
459
398
|
msg_name = msg.class.name
|
460
|
-
queue_name =
|
399
|
+
queue_name = get_endpoint_for_msg(msg_name)
|
461
400
|
queue_msg_for_send_on_complete(msg, queue_name, timestamp)
|
462
401
|
end
|
463
402
|
|
@@ -476,7 +415,7 @@ module RServiceBus2
|
|
476
415
|
# Sends a subscription request across the Bus
|
477
416
|
# @param [String] eventName event to be subscribes to
|
478
417
|
def subscribe(event_name)
|
479
|
-
RServiceBus2.rlog
|
418
|
+
RServiceBus2.rlog "Bus.Subscribe: #{event_name}"
|
480
419
|
|
481
420
|
queue_name = get_endpoint_for_msg(event_name)
|
482
421
|
subscription = MessageSubscription.new(event_name)
|
@@ -26,7 +26,7 @@ module RServiceBus2
|
|
26
26
|
@resource_manager.all.each do |k, v|
|
27
27
|
next unless monitor.class.method_defined?(k)
|
28
28
|
|
29
|
-
monitor.instance_variable_set("@#{k}", v.
|
29
|
+
monitor.instance_variable_set("@#{k}", v.resource)
|
30
30
|
@resource_list[monitor.class.name] = [] if
|
31
31
|
@resource_list[monitor.class.name].nil?
|
32
32
|
@resource_list[monitor.class.name] << v
|
@@ -76,7 +76,7 @@ module RServiceBus2
|
|
76
76
|
return if @resource_list_by_saga_name[saga.class.name].nil?
|
77
77
|
|
78
78
|
@resource_list_by_saga_name[saga.class.name].each do |k, v|
|
79
|
-
saga.instance_variable_set("@#{k}", @resource_manager.get(k).
|
79
|
+
saga.instance_variable_set("@#{k}", @resource_manager.get(k).resource)
|
80
80
|
RServiceBus2.rlog "App resource attribute, #{k}, set for: " + saga.class.name
|
81
81
|
end
|
82
82
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rservicebus2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Guy Irvine
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-05-
|
11
|
+
date: 2021-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: beanstalk-client
|