rservicebus2 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/bin/return_messages_to_source_queue +3 -3
  3. data/bin/rsb_ctl +1 -1
  4. data/bin/rservicebus2 +3 -3
  5. data/bin/rservicebus2-transport +4 -5
  6. data/bin/send_empty_message +6 -7
  7. data/lib/rservicebus2.rb +59 -0
  8. data/lib/{rservicebus → rservicebus2}/agent.rb +2 -2
  9. data/lib/{rservicebus → rservicebus2}/appresource.rb +2 -2
  10. data/lib/{rservicebus → rservicebus2}/appresource/dir.rb +1 -1
  11. data/lib/{rservicebus → rservicebus2}/appresource/file.rb +1 -1
  12. data/lib/{rservicebus → rservicebus2}/appresource/fluiddb.rb +1 -1
  13. data/lib/{rservicebus → rservicebus2}/appresource_configure.rb +4 -4
  14. data/lib/{rservicebus → rservicebus2}/audit.rb +1 -1
  15. data/lib/{rservicebus → rservicebus2}/circuitbreaker.rb +5 -5
  16. data/lib/{rservicebus → rservicebus2}/config.rb +1 -2
  17. data/lib/{rservicebus → rservicebus2}/cron_manager.rb +4 -4
  18. data/lib/{rservicebus → rservicebus2}/endpointmapping.rb +4 -4
  19. data/lib/{rservicebus → rservicebus2}/errormessage.rb +1 -1
  20. data/lib/{rservicebus → rservicebus2}/handler_loader.rb +1 -1
  21. data/lib/{rservicebus → rservicebus2}/handler_manager.rb +1 -1
  22. data/lib/{rservicebus → rservicebus2}/helper_functions.rb +4 -4
  23. data/lib/{rservicebus → rservicebus2}/host.rb +4 -4
  24. data/lib/{rservicebus → rservicebus2}/message.rb +2 -2
  25. data/lib/{rservicebus → rservicebus2}/message/statisticoutput.rb +1 -1
  26. data/lib/{rservicebus → rservicebus2}/message/subscription.rb +1 -1
  27. data/lib/{rservicebus → rservicebus2}/message/verboseoutput.rb +1 -1
  28. data/lib/{rservicebus → rservicebus2}/monitor.rb +1 -1
  29. data/lib/{rservicebus → rservicebus2}/monitor/csvdir.rb +7 -7
  30. data/lib/{rservicebus → rservicebus2}/monitor/dir.rb +1 -1
  31. data/lib/{rservicebus → rservicebus2}/monitor/dirnotifier.rb +11 -11
  32. data/lib/{rservicebus → rservicebus2}/monitor/message.rb +1 -1
  33. data/lib/{rservicebus → rservicebus2}/monitor/xmldir.rb +2 -2
  34. data/lib/{rservicebus → rservicebus2}/monitor_configure.rb +7 -7
  35. data/lib/{rservicebus → rservicebus2}/mq.rb +3 -3
  36. data/lib/{rservicebus → rservicebus2}/mq/beanstalk.rb +2 -2
  37. data/lib/{rservicebus → rservicebus2}/resource_manager.rb +7 -7
  38. data/lib/{rservicebus → rservicebus2}/saga/base.rb +1 -1
  39. data/lib/{rservicebus → rservicebus2}/saga/data.rb +2 -2
  40. data/lib/{rservicebus → rservicebus2}/saga/manager.rb +24 -26
  41. data/lib/{rservicebus → rservicebus2}/saga_loader.rb +7 -7
  42. data/lib/{rservicebus → rservicebus2}/saga_storage.rb +3 -3
  43. data/lib/{rservicebus → rservicebus2}/saga_storage/dir.rb +2 -3
  44. data/lib/{rservicebus → rservicebus2}/saga_storage/inmemory.rb +5 -2
  45. data/lib/{rservicebus → rservicebus2}/sendat_manager.rb +3 -3
  46. data/lib/{rservicebus → rservicebus2}/sendat_storage.rb +3 -3
  47. data/lib/{rservicebus → rservicebus2}/sendat_storage/file.rb +1 -1
  48. data/lib/{rservicebus → rservicebus2}/sendat_storage/inmemory.rb +1 -1
  49. data/lib/{rservicebus → rservicebus2}/state_manager.rb +3 -3
  50. data/lib/{rservicebus → rservicebus2}/state_storage.rb +3 -3
  51. data/lib/{rservicebus → rservicebus2}/state_storage/dir.rb +1 -1
  52. data/lib/{rservicebus → rservicebus2}/state_storage/inmemory.rb +1 -1
  53. data/lib/{rservicebus → rservicebus2}/statistic_manager.rb +3 -3
  54. data/lib/{rservicebus → rservicebus2}/stats.rb +1 -1
  55. data/lib/{rservicebus → rservicebus2}/subscription_manager.rb +5 -5
  56. data/lib/{rservicebus → rservicebus2}/subscription_storage.rb +1 -1
  57. data/lib/{rservicebus → rservicebus2}/subscription_storage/file.rb +1 -1
  58. data/lib/{rservicebus → rservicebus2}/subscription_storage_configure.rb +2 -2
  59. data/lib/rservicebus2/test.rb +1 -0
  60. data/lib/{rservicebus → rservicebus2}/test/bus.rb +2 -2
  61. data/lib/{rservicebus → rservicebus2}/transporter.rb +16 -16
  62. data/lib/{rservicebus → rservicebus2}/usermessage/withpayload.rb +1 -1
  63. metadata +58 -59
  64. data/lib/rservicebus.rb +0 -59
  65. data/lib/rservicebus/subscription_storage/redis.rb +0 -69
  66. data/lib/rservicebus/test.rb +0 -1
@@ -1,6 +1,8 @@
1
- module RServiceBus
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 << correlation_id
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 'rservicebus/sendat_storage'
1
+ require 'rservicebus2/sendat_storage'
2
2
 
3
- module RServiceBus
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 = RServiceBus.get_value('SENDAT_URI')
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 RServiceBus
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 'rservicebus/sendat_storage/file'
8
+ require 'rservicebus2/sendat_storage/file'
9
9
  return SendAtStorageFile.new(uri)
10
10
  when 'inmem'
11
- require 'rservicebus/sendat_storage/inmemory'
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,4 +1,4 @@
1
- module RServiceBus
1
+ module RServiceBus2
2
2
  # Send at storage file
3
3
  class SendAtStorageFile
4
4
  def initialize(uri)
@@ -1,4 +1,4 @@
1
- module RServiceBus
1
+ module RServiceBus2
2
2
  # Send at storage in memory
3
3
  class SendAtStorageInMemory
4
4
  def initialize(_uri)
@@ -1,6 +1,6 @@
1
- require 'rservicebus/state_storage'
1
+ require 'rservicebus2/state_storage'
2
2
 
3
- module RServiceBus
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 = RServiceBus.get_value('STATE_URI')
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 RServiceBus
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 'rservicebus/state_storage/dir.rb'
7
+ require 'rservicebus2/state_storage/dir.rb'
8
8
  return StateStorageDir.new(uri)
9
9
  when 'inmem'
10
- require 'rservicebus/state_storage/inmemory.rb'
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 RServiceBus
1
+ module RServiceBus2
2
2
  # State Storage on the file system
3
3
  class StateStorageDir
4
4
  def initialize(uri)
@@ -1,4 +1,4 @@
1
- module RServiceBus
1
+ module RServiceBus2
2
2
  # StateStorage InMemory
3
3
  class StateStorageInMemory
4
4
  def initialize(_uri)
@@ -1,4 +1,4 @@
1
- module RServiceBus
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 = !RServiceBus.get_value('VERBOSE', nil).nil?
18
+ @output = !RServiceBus2.get_value('VERBOSE', nil).nil?
19
19
  @max_stat_output_countdown =
20
- RServiceBus.get_value('STAT_OUTPUT_COUNTDOWN', '1').to_i
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 RServiceBus
1
+ module RServiceBus2
2
2
  # Used to collect various run time stats for runtime reporting
3
3
  class Stats
4
4
  def initialize
@@ -1,4 +1,4 @@
1
- module RServiceBus
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
- RServiceBus.log "No subscribers for event, #{event_name}"
14
- RServiceBus.log "If there should be, ensure you have the appropriate evironment variable set, eg MESSAGE_ENDPOINT_MAPPINGS=#{event_name}:<Queue Name>"
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
- RServiceBus.log 'Adding subscription for, ' +
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(event_name, queue_name)
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,6 +1,6 @@
1
1
  require 'uri'
2
2
 
3
- module RServiceBus
3
+ module RServiceBus2
4
4
  # Base class for subscription storage
5
5
  class SubscriptionStorage
6
6
  # Constructor
@@ -1,4 +1,4 @@
1
- module RServiceBus
1
+ module RServiceBus2
2
2
  # Implementation of Subscription Storage to Redis
3
3
  class SubscriptionStorageFile < SubscriptionStorage
4
4
  # Constructor
@@ -1,5 +1,5 @@
1
1
  require 'uri'
2
- module RServiceBus
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 'rservicebus/subscription_storage/file'
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 RServiceBus
1
+ module RServiceBus2
2
2
  # Test Bus
3
3
  class TestBus
4
- attr_accessor :publish_list, :send_list, :reply_list, :log_list, :sagaData
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 'rservicebus'
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
- RServiceBus.log "Env value: #{name}: #{value}"
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
- RServiceBus.log "Connected to, #{source_queue_name}@#{source_url}"
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
- RServiceBus.log "Disconnect from,
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
- RServiceBus.rlog "connect called, #{remote_host_name}"
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
- RServiceBus.log "**** Username not specified for Host, #{remoteHostName}"
65
- RServiceBus.log "**** Add an environment variable of the form, REMOTE_USER_#{remoteHostName.upcase}=[USERNAME]"
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
- RServiceBus.rlog "Local Port: #{@local_port}"
70
+ RServiceBus2.rlog "Local Port: #{@local_port}"
71
71
  begin
72
- RServiceBus.log "Connect SSH, #{@remote_user_name}@#{@remoteHostName}"
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
- RServiceBus.log "Connected to SSH, #{@remote_user_name}@#{@remote_host_name}"
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
- RServiceBus.rlog "Connect to Remote Beanstalk, #{destination_url}"
90
+ RServiceBus2.rlog "Connect to Remote Beanstalk, #{destination_url}"
91
91
  @destination = Beanstalk::Pool.new([destinationUrl])
92
- RServiceBus.rlog "Connected to Remote Beanstalk, #{destination_url}"
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
- RServiceBus.rlog "Put msg, #{msg.remote_queue_name}"
111
+ RServiceBus2.rlog "Put msg, #{msg.remote_queue_name}"
112
112
  @destination.use(msg.remote_queue_name)
113
113
  @destination.put(job.body)
114
- RServiceBus.log "Msg put, #{msg.remote_queue_name}"
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
- RServiceBus.log "Job sent to, #{@remote_user_name}@#{@remote_host_name}/#{@remote_queue_name}"
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
- RServiceBus.rlog 'No Msg'
127
+ RServiceBus2.rlog 'No Msg'
128
128
  return
129
129
  end
130
130
  raise e
@@ -1,4 +1,4 @@
1
- module RServiceBus
1
+ module RServiceBus2
2
2
  # User Message
3
3
  class UserMessageWithPayload
4
4
  attr_reader :payload
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.2
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-18 00:00:00.000000000 Z
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/rservicebus/agent.rb
96
- - lib/rservicebus/appresource/dir.rb
97
- - lib/rservicebus/appresource/file.rb
98
- - lib/rservicebus/appresource/fluiddb.rb
99
- - lib/rservicebus/appresource.rb
100
- - lib/rservicebus/appresource_configure.rb
101
- - lib/rservicebus/audit.rb
102
- - lib/rservicebus/circuitbreaker.rb
103
- - lib/rservicebus/config.rb
104
- - lib/rservicebus/cron_manager.rb
105
- - lib/rservicebus/endpointmapping.rb
106
- - lib/rservicebus/errormessage.rb
107
- - lib/rservicebus/handler_loader.rb
108
- - lib/rservicebus/handler_manager.rb
109
- - lib/rservicebus/helper_functions.rb
110
- - lib/rservicebus/host.rb
111
- - lib/rservicebus/message/statisticoutput.rb
112
- - lib/rservicebus/message/subscription.rb
113
- - lib/rservicebus/message/verboseoutput.rb
114
- - lib/rservicebus/message.rb
115
- - lib/rservicebus/monitor/csvdir.rb
116
- - lib/rservicebus/monitor/dir.rb
117
- - lib/rservicebus/monitor/dirnotifier.rb
118
- - lib/rservicebus/monitor/message.rb
119
- - lib/rservicebus/monitor/xmldir.rb
120
- - lib/rservicebus/monitor.rb
121
- - lib/rservicebus/monitor_configure.rb
122
- - lib/rservicebus/mq/beanstalk.rb
123
- - lib/rservicebus/mq.rb
124
- - lib/rservicebus/resource_manager.rb
125
- - lib/rservicebus/saga/base.rb
126
- - lib/rservicebus/saga/data.rb
127
- - lib/rservicebus/saga/manager.rb
128
- - lib/rservicebus/saga_loader.rb
129
- - lib/rservicebus/saga_storage/dir.rb
130
- - lib/rservicebus/saga_storage/inmemory.rb
131
- - lib/rservicebus/saga_storage.rb
132
- - lib/rservicebus/sendat_manager.rb
133
- - lib/rservicebus/sendat_storage/file.rb
134
- - lib/rservicebus/sendat_storage/inmemory.rb
135
- - lib/rservicebus/sendat_storage.rb
136
- - lib/rservicebus/state_manager.rb
137
- - lib/rservicebus/state_storage/dir.rb
138
- - lib/rservicebus/state_storage/inmemory.rb
139
- - lib/rservicebus/state_storage.rb
140
- - lib/rservicebus/statistic_manager.rb
141
- - lib/rservicebus/stats.rb
142
- - lib/rservicebus/subscription_manager.rb
143
- - lib/rservicebus/subscription_storage/file.rb
144
- - lib/rservicebus/subscription_storage/redis.rb
145
- - lib/rservicebus/subscription_storage.rb
146
- - lib/rservicebus/subscription_storage_configure.rb
147
- - lib/rservicebus/test/bus.rb
148
- - lib/rservicebus/test.rb
149
- - lib/rservicebus/transporter.rb
150
- - lib/rservicebus/usermessage/withpayload.rb
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