rservicebus2 0.0.2 → 0.0.3
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/bin/return_messages_to_source_queue +3 -3
- data/bin/rsb_ctl +1 -1
- data/bin/rservicebus2 +3 -3
- data/bin/rservicebus2-transport +4 -5
- data/bin/send_empty_message +6 -7
- data/lib/rservicebus2.rb +59 -0
- data/lib/{rservicebus → rservicebus2}/agent.rb +2 -2
- data/lib/{rservicebus → rservicebus2}/appresource.rb +2 -2
- data/lib/{rservicebus → rservicebus2}/appresource/dir.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/appresource/file.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/appresource/fluiddb.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/appresource_configure.rb +4 -4
- data/lib/{rservicebus → rservicebus2}/audit.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/circuitbreaker.rb +5 -5
- data/lib/{rservicebus → rservicebus2}/config.rb +1 -2
- data/lib/{rservicebus → rservicebus2}/cron_manager.rb +4 -4
- data/lib/{rservicebus → rservicebus2}/endpointmapping.rb +4 -4
- data/lib/{rservicebus → rservicebus2}/errormessage.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/handler_loader.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/handler_manager.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/helper_functions.rb +4 -4
- data/lib/{rservicebus → rservicebus2}/host.rb +4 -4
- data/lib/{rservicebus → rservicebus2}/message.rb +2 -2
- data/lib/{rservicebus → rservicebus2}/message/statisticoutput.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/message/subscription.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/message/verboseoutput.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/monitor.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/monitor/csvdir.rb +7 -7
- data/lib/{rservicebus → rservicebus2}/monitor/dir.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/monitor/dirnotifier.rb +11 -11
- data/lib/{rservicebus → rservicebus2}/monitor/message.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/monitor/xmldir.rb +2 -2
- data/lib/{rservicebus → rservicebus2}/monitor_configure.rb +7 -7
- data/lib/{rservicebus → rservicebus2}/mq.rb +3 -3
- data/lib/{rservicebus → rservicebus2}/mq/beanstalk.rb +2 -2
- data/lib/{rservicebus → rservicebus2}/resource_manager.rb +7 -7
- data/lib/{rservicebus → rservicebus2}/saga/base.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/saga/data.rb +2 -2
- data/lib/{rservicebus → rservicebus2}/saga/manager.rb +24 -26
- data/lib/{rservicebus → rservicebus2}/saga_loader.rb +7 -7
- data/lib/{rservicebus → rservicebus2}/saga_storage.rb +3 -3
- data/lib/{rservicebus → rservicebus2}/saga_storage/dir.rb +2 -3
- data/lib/{rservicebus → rservicebus2}/saga_storage/inmemory.rb +5 -2
- data/lib/{rservicebus → rservicebus2}/sendat_manager.rb +3 -3
- data/lib/{rservicebus → rservicebus2}/sendat_storage.rb +3 -3
- data/lib/{rservicebus → rservicebus2}/sendat_storage/file.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/sendat_storage/inmemory.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/state_manager.rb +3 -3
- data/lib/{rservicebus → rservicebus2}/state_storage.rb +3 -3
- data/lib/{rservicebus → rservicebus2}/state_storage/dir.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/state_storage/inmemory.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/statistic_manager.rb +3 -3
- data/lib/{rservicebus → rservicebus2}/stats.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/subscription_manager.rb +5 -5
- data/lib/{rservicebus → rservicebus2}/subscription_storage.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/subscription_storage/file.rb +1 -1
- data/lib/{rservicebus → rservicebus2}/subscription_storage_configure.rb +2 -2
- data/lib/rservicebus2/test.rb +1 -0
- data/lib/{rservicebus → rservicebus2}/test/bus.rb +2 -2
- data/lib/{rservicebus → rservicebus2}/transporter.rb +16 -16
- data/lib/{rservicebus → rservicebus2}/usermessage/withpayload.rb +1 -1
- metadata +58 -59
- data/lib/rservicebus.rb +0 -59
- data/lib/rservicebus/subscription_storage/redis.rb +0 -69
- data/lib/rservicebus/test.rb +0 -1
@@ -1,6 +1,8 @@
|
|
1
|
-
module
|
1
|
+
module RServiceBus2
|
2
2
|
# Saga Storage In Memory
|
3
3
|
class SagaStorageInMemory
|
4
|
+
attr_reader :hash
|
5
|
+
|
4
6
|
def initialize(_uri)
|
5
7
|
end
|
6
8
|
|
@@ -28,10 +30,11 @@ module RServiceBus
|
|
28
30
|
end
|
29
31
|
|
30
32
|
def delete(correlation_id)
|
31
|
-
@deleted
|
33
|
+
@deleted[correlation_id] = correlation_id
|
32
34
|
end
|
33
35
|
|
34
36
|
def rollback
|
37
|
+
@deleted = {}
|
35
38
|
end
|
36
39
|
end
|
37
40
|
end
|
@@ -1,13 +1,13 @@
|
|
1
|
-
require '
|
1
|
+
require 'rservicebus2/sendat_storage'
|
2
2
|
|
3
|
-
module
|
3
|
+
module RServiceBus2
|
4
4
|
# Send At Manager
|
5
5
|
class SendAtManager
|
6
6
|
def initialize(bus)
|
7
7
|
# Check if the SendAt Dir has been specified
|
8
8
|
# If it has, make sure it exists, and is writable
|
9
9
|
|
10
|
-
string =
|
10
|
+
string = RServiceBus2.get_value('SENDAT_URI')
|
11
11
|
string = 'file:///tmp/rservicebus-sendat' if string.nil?
|
12
12
|
|
13
13
|
uri = URI.parse(string)
|
@@ -1,14 +1,14 @@
|
|
1
1
|
|
2
|
-
module
|
2
|
+
module RServiceBus2
|
3
3
|
# Send At Storage
|
4
4
|
class SendAtStorage
|
5
5
|
def self.get(uri)
|
6
6
|
case uri.scheme
|
7
7
|
when 'file'
|
8
|
-
require '
|
8
|
+
require 'rservicebus2/sendat_storage/file'
|
9
9
|
return SendAtStorageFile.new(uri)
|
10
10
|
when 'inmem'
|
11
|
-
require '
|
11
|
+
require 'rservicebus2/sendat_storage/inmemory'
|
12
12
|
return SendAtStorageInMemory.new(uri)
|
13
13
|
else
|
14
14
|
abort("Scheme, #{uri.scheme}, not recognised when configuring
|
@@ -1,6 +1,6 @@
|
|
1
|
-
require '
|
1
|
+
require 'rservicebus2/state_storage'
|
2
2
|
|
3
|
-
module
|
3
|
+
module RServiceBus2
|
4
4
|
|
5
5
|
# State Manager
|
6
6
|
class StateManager
|
@@ -8,7 +8,7 @@ module RServiceBus
|
|
8
8
|
# Check if the State Dir has been specified
|
9
9
|
# If it has, make sure it exists, and is writable
|
10
10
|
|
11
|
-
string =
|
11
|
+
string = RServiceBus2.get_value('STATE_URI')
|
12
12
|
string = 'dir:///tmp' if string.nil?
|
13
13
|
|
14
14
|
uri = URI.parse(string)
|
@@ -1,13 +1,13 @@
|
|
1
|
-
module
|
1
|
+
module RServiceBus2
|
2
2
|
# State Storage
|
3
3
|
class StateStorage
|
4
4
|
def self.get(uri)
|
5
5
|
case uri.scheme
|
6
6
|
when 'dir'
|
7
|
-
require '
|
7
|
+
require 'rservicebus2/state_storage/dir.rb'
|
8
8
|
return StateStorageDir.new(uri)
|
9
9
|
when 'inmem'
|
10
|
-
require '
|
10
|
+
require 'rservicebus2/state_storage/inmemory.rb'
|
11
11
|
return StateStorageInMemory.new(uri)
|
12
12
|
else
|
13
13
|
abort("Scheme, #{uri.scheme}, not recognised when configuring
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module
|
1
|
+
module RServiceBus2
|
2
2
|
# Used to collect various run time stats for runtime reporting
|
3
3
|
class StatisticManager
|
4
4
|
attr_accessor :output
|
@@ -15,9 +15,9 @@ module RServiceBus
|
|
15
15
|
|
16
16
|
@total_by_message_type = {}
|
17
17
|
|
18
|
-
@output = !
|
18
|
+
@output = !RServiceBus2.get_value('VERBOSE', nil).nil?
|
19
19
|
@max_stat_output_countdown =
|
20
|
-
|
20
|
+
RServiceBus2.get_value('STAT_OUTPUT_COUNTDOWN', '1').to_i
|
21
21
|
@stat_output_countdown = 0
|
22
22
|
end
|
23
23
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module
|
1
|
+
module RServiceBus2
|
2
2
|
# Subscription Manager
|
3
3
|
class SubscriptionManager
|
4
4
|
def initialize(subscription_storage)
|
@@ -10,8 +10,8 @@ module RServiceBus
|
|
10
10
|
def get(event_name)
|
11
11
|
subscriptions = @subscriptions[event_name]
|
12
12
|
if subscriptions.nil?
|
13
|
-
|
14
|
-
|
13
|
+
RServiceBus2.log "No subscribers for event, #{event_name}"
|
14
|
+
RServiceBus2.log "If there should be, ensure you have the appropriate evironment variable set, eg MESSAGE_ENDPOINT_MAPPINGS=#{event_name}:<Queue Name>"
|
15
15
|
return []
|
16
16
|
end
|
17
17
|
|
@@ -19,12 +19,12 @@ module RServiceBus
|
|
19
19
|
end
|
20
20
|
|
21
21
|
def add(event_name, queue_name)
|
22
|
-
|
22
|
+
RServiceBus2.log 'Adding subscription for, ' +
|
23
23
|
event_name + ', to, ' + queue_name
|
24
24
|
@subscriptions = @subscription_storage.add(event_name, queue_name)
|
25
25
|
end
|
26
26
|
|
27
|
-
def remove(
|
27
|
+
def remove(_event_name, _queue_name)
|
28
28
|
fail 'Method, remove, needs to be implemented for this subscription storage'
|
29
29
|
end
|
30
30
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
require 'uri'
|
2
|
-
module
|
2
|
+
module RServiceBus2
|
3
3
|
# Configure SubscriptionStorage for an rservicebus host
|
4
4
|
class ConfigureSubscriptionStorage
|
5
5
|
def get(app_name, uri_string)
|
@@ -7,7 +7,7 @@ module RServiceBus
|
|
7
7
|
|
8
8
|
case uri.scheme
|
9
9
|
when 'file'
|
10
|
-
require '
|
10
|
+
require 'rservicebus2/subscription_storage/file'
|
11
11
|
s = SubscriptionStorageFile.new(app_name, uri)
|
12
12
|
else
|
13
13
|
abort("Scheme, #{uri.scheme}, not recognised when configuring
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'rservicebus2/test/bus'
|
@@ -1,7 +1,7 @@
|
|
1
|
-
module
|
1
|
+
module RServiceBus2
|
2
2
|
# Test Bus
|
3
3
|
class TestBus
|
4
|
-
attr_accessor :publish_list, :send_list, :reply_list, :log_list, :
|
4
|
+
attr_accessor :publish_list, :send_list, :reply_list, :log_list, :saga_data
|
5
5
|
|
6
6
|
def initialize
|
7
7
|
@publish_list = []
|
@@ -1,5 +1,5 @@
|
|
1
1
|
require 'beanstalk-client'
|
2
|
-
require '
|
2
|
+
require 'rservicebus2'
|
3
3
|
require 'net/ssh/gateway'
|
4
4
|
|
5
5
|
module RServiceBus
|
@@ -11,7 +11,7 @@ module RServiceBus
|
|
11
11
|
class Transporter
|
12
12
|
def get_value(name, default = nil)
|
13
13
|
value = (ENV[name].nil? || ENV[name] == '') ? default : ENV[name]
|
14
|
-
|
14
|
+
RServiceBus2.log "Env value: #{name}: #{value}"
|
15
15
|
value
|
16
16
|
end
|
17
17
|
|
@@ -21,7 +21,7 @@ module RServiceBus
|
|
21
21
|
@source = Beanstalk::Pool.new([source_url])
|
22
22
|
@source.watch source_queue_name
|
23
23
|
|
24
|
-
|
24
|
+
RServiceBus2.log "Connected to, #{source_queue_name}@#{source_url}"
|
25
25
|
|
26
26
|
rescue StandardError => e
|
27
27
|
puts 'Error connecting to Beanstalk'
|
@@ -37,7 +37,7 @@ module RServiceBus
|
|
37
37
|
end
|
38
38
|
|
39
39
|
def disconnect
|
40
|
-
|
40
|
+
RServiceBus2.log "Disconnect from,
|
41
41
|
#{@remote_user_name}@#{@remote_host_name}/#{@remote_queue_name}"
|
42
42
|
@gateway.shutdown! unless @gateway.nil?
|
43
43
|
@gateway = nil
|
@@ -51,7 +51,7 @@ module RServiceBus
|
|
51
51
|
end
|
52
52
|
|
53
53
|
def connect(remote_host_name)
|
54
|
-
|
54
|
+
RServiceBus2.rlog "connect called, #{remote_host_name}"
|
55
55
|
if @gateway.nil? || remoteHostName != @remote_host_name || @destination.nil?
|
56
56
|
disconnect
|
57
57
|
end
|
@@ -61,19 +61,19 @@ module RServiceBus
|
|
61
61
|
@remote_host_name = remote_host_name
|
62
62
|
@remote_user_name = get_value("REMOTE_USER_#{remote_host_name.upcase}")
|
63
63
|
if @remote_user_name.nil?
|
64
|
-
|
65
|
-
|
64
|
+
RServiceBus2.log "**** Username not specified for Host, #{remoteHostName}"
|
65
|
+
RServiceBus2.log "**** Add an environment variable of the form, REMOTE_USER_#{remoteHostName.upcase}=[USERNAME]"
|
66
66
|
abort
|
67
67
|
end
|
68
68
|
|
69
69
|
@local_port = get_value('LOCAL_PORT', 27018).to_i
|
70
|
-
|
70
|
+
RServiceBus2.rlog "Local Port: #{@local_port}"
|
71
71
|
begin
|
72
|
-
|
72
|
+
RServiceBus2.log "Connect SSH, #{@remote_user_name}@#{@remoteHostName}"
|
73
73
|
# Open port 27018 to forward to 127.0.0.11300 on the remote host
|
74
74
|
@gateway = Net::SSH::Gateway.new(@remote_host_name, @remote_user_name)
|
75
75
|
@gateway.open('127.0.0.1', 11300, @local_port)
|
76
|
-
|
76
|
+
RServiceBus2.log "Connected to SSH, #{@remote_user_name}@#{@remote_host_name}"
|
77
77
|
|
78
78
|
rescue Errno::EADDRINUSE
|
79
79
|
puts "*** Local transport port in use, #{@local_port}"
|
@@ -87,9 +87,9 @@ module RServiceBus
|
|
87
87
|
|
88
88
|
begin
|
89
89
|
destination_url = "127.0.0.1:#{@local_port}"
|
90
|
-
|
90
|
+
RServiceBus2.rlog "Connect to Remote Beanstalk, #{destination_url}"
|
91
91
|
@destination = Beanstalk::Pool.new([destinationUrl])
|
92
|
-
|
92
|
+
RServiceBus2.rlog "Connected to Remote Beanstalk, #{destination_url}"
|
93
93
|
rescue StandardError => e
|
94
94
|
if e.message == 'Beanstalk::NotConnected'
|
95
95
|
puts "***Could not connect to destination, check beanstalk is running at, #{destination_url}"
|
@@ -108,10 +108,10 @@ module RServiceBus
|
|
108
108
|
connect(msg.remote_host_name)
|
109
109
|
|
110
110
|
@remote_queue_name = msg.remote_queue_name
|
111
|
-
|
111
|
+
RServiceBus2.rlog "Put msg, #{msg.remote_queue_name}"
|
112
112
|
@destination.use(msg.remote_queue_name)
|
113
113
|
@destination.put(job.body)
|
114
|
-
|
114
|
+
RServiceBus2.log "Msg put, #{msg.remote_queue_name}"
|
115
115
|
|
116
116
|
unless ENV['AUDIT_QUEUE_NAME'].nil?
|
117
117
|
@source.use ENV['AUDIT_QUEUE_NAME']
|
@@ -120,11 +120,11 @@ module RServiceBus
|
|
120
120
|
# remove job
|
121
121
|
job.delete
|
122
122
|
|
123
|
-
|
123
|
+
RServiceBus2.log "Job sent to, #{@remote_user_name}@#{@remote_host_name}/#{@remote_queue_name}"
|
124
124
|
rescue StandardError => e
|
125
125
|
disconnect
|
126
126
|
if e.message == 'TIMED_OUT'
|
127
|
-
|
127
|
+
RServiceBus2.rlog 'No Msg'
|
128
128
|
return
|
129
129
|
end
|
130
130
|
raise e
|
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.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Guy Irvine
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-07-
|
11
|
+
date: 2016-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: uuidtools
|
@@ -92,63 +92,62 @@ executables:
|
|
92
92
|
extensions: []
|
93
93
|
extra_rdoc_files: []
|
94
94
|
files:
|
95
|
-
- lib/
|
96
|
-
- lib/
|
97
|
-
- lib/
|
98
|
-
- lib/
|
99
|
-
- lib/
|
100
|
-
- lib/
|
101
|
-
- lib/
|
102
|
-
- lib/
|
103
|
-
- lib/
|
104
|
-
- lib/
|
105
|
-
- lib/
|
106
|
-
- lib/
|
107
|
-
- lib/
|
108
|
-
- lib/
|
109
|
-
- lib/
|
110
|
-
- lib/
|
111
|
-
- lib/
|
112
|
-
- lib/
|
113
|
-
- lib/
|
114
|
-
- lib/
|
115
|
-
- lib/
|
116
|
-
- lib/
|
117
|
-
- lib/
|
118
|
-
- lib/
|
119
|
-
- lib/
|
120
|
-
- lib/
|
121
|
-
- lib/
|
122
|
-
- lib/
|
123
|
-
- lib/
|
124
|
-
- lib/
|
125
|
-
- lib/
|
126
|
-
- lib/
|
127
|
-
- lib/
|
128
|
-
- lib/
|
129
|
-
- lib/
|
130
|
-
- lib/
|
131
|
-
- lib/
|
132
|
-
- lib/
|
133
|
-
- lib/
|
134
|
-
- lib/
|
135
|
-
- lib/
|
136
|
-
- lib/
|
137
|
-
- lib/
|
138
|
-
- lib/
|
139
|
-
- lib/
|
140
|
-
- lib/
|
141
|
-
- lib/
|
142
|
-
- lib/
|
143
|
-
- lib/
|
144
|
-
- lib/
|
145
|
-
- lib/
|
146
|
-
- lib/
|
147
|
-
- lib/
|
148
|
-
- lib/
|
149
|
-
- lib/
|
150
|
-
- lib/
|
151
|
-
- lib/rservicebus.rb
|
95
|
+
- lib/rservicebus2/agent.rb
|
96
|
+
- lib/rservicebus2/appresource/dir.rb
|
97
|
+
- lib/rservicebus2/appresource/file.rb
|
98
|
+
- lib/rservicebus2/appresource/fluiddb.rb
|
99
|
+
- lib/rservicebus2/appresource.rb
|
100
|
+
- lib/rservicebus2/appresource_configure.rb
|
101
|
+
- lib/rservicebus2/audit.rb
|
102
|
+
- lib/rservicebus2/circuitbreaker.rb
|
103
|
+
- lib/rservicebus2/config.rb
|
104
|
+
- lib/rservicebus2/cron_manager.rb
|
105
|
+
- lib/rservicebus2/endpointmapping.rb
|
106
|
+
- lib/rservicebus2/errormessage.rb
|
107
|
+
- lib/rservicebus2/handler_loader.rb
|
108
|
+
- lib/rservicebus2/handler_manager.rb
|
109
|
+
- lib/rservicebus2/helper_functions.rb
|
110
|
+
- lib/rservicebus2/host.rb
|
111
|
+
- lib/rservicebus2/message/statisticoutput.rb
|
112
|
+
- lib/rservicebus2/message/subscription.rb
|
113
|
+
- lib/rservicebus2/message/verboseoutput.rb
|
114
|
+
- lib/rservicebus2/message.rb
|
115
|
+
- lib/rservicebus2/monitor/csvdir.rb
|
116
|
+
- lib/rservicebus2/monitor/dir.rb
|
117
|
+
- lib/rservicebus2/monitor/dirnotifier.rb
|
118
|
+
- lib/rservicebus2/monitor/message.rb
|
119
|
+
- lib/rservicebus2/monitor/xmldir.rb
|
120
|
+
- lib/rservicebus2/monitor.rb
|
121
|
+
- lib/rservicebus2/monitor_configure.rb
|
122
|
+
- lib/rservicebus2/mq/beanstalk.rb
|
123
|
+
- lib/rservicebus2/mq.rb
|
124
|
+
- lib/rservicebus2/resource_manager.rb
|
125
|
+
- lib/rservicebus2/saga/base.rb
|
126
|
+
- lib/rservicebus2/saga/data.rb
|
127
|
+
- lib/rservicebus2/saga/manager.rb
|
128
|
+
- lib/rservicebus2/saga_loader.rb
|
129
|
+
- lib/rservicebus2/saga_storage/dir.rb
|
130
|
+
- lib/rservicebus2/saga_storage/inmemory.rb
|
131
|
+
- lib/rservicebus2/saga_storage.rb
|
132
|
+
- lib/rservicebus2/sendat_manager.rb
|
133
|
+
- lib/rservicebus2/sendat_storage/file.rb
|
134
|
+
- lib/rservicebus2/sendat_storage/inmemory.rb
|
135
|
+
- lib/rservicebus2/sendat_storage.rb
|
136
|
+
- lib/rservicebus2/state_manager.rb
|
137
|
+
- lib/rservicebus2/state_storage/dir.rb
|
138
|
+
- lib/rservicebus2/state_storage/inmemory.rb
|
139
|
+
- lib/rservicebus2/state_storage.rb
|
140
|
+
- lib/rservicebus2/statistic_manager.rb
|
141
|
+
- lib/rservicebus2/stats.rb
|
142
|
+
- lib/rservicebus2/subscription_manager.rb
|
143
|
+
- lib/rservicebus2/subscription_storage/file.rb
|
144
|
+
- lib/rservicebus2/subscription_storage.rb
|
145
|
+
- lib/rservicebus2/subscription_storage_configure.rb
|
146
|
+
- lib/rservicebus2/test/bus.rb
|
147
|
+
- lib/rservicebus2/test.rb
|
148
|
+
- lib/rservicebus2/transporter.rb
|
149
|
+
- lib/rservicebus2/usermessage/withpayload.rb
|
150
|
+
- lib/rservicebus2.rb
|
152
151
|
- bin/return_messages_to_source_queue
|
153
152
|
- bin/rsb_ctl
|
154
153
|
- bin/rservicebus2
|