amq-client 0.7.0.alpha14 → 0.7.0.alpha15
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.
@@ -15,7 +15,7 @@ amq_client_example "Bind a new queue to amq.fanout" do |client|
|
|
15
15
|
puts "Queue #{queue.name.inspect} is now declared!"
|
16
16
|
|
17
17
|
queue.bind("amq.fanout") do
|
18
|
-
puts "Queue #{queue.name} is now bound to amq.fanout"
|
18
|
+
puts "Queue #{queue.name} is now bound to amq.fanout."
|
19
19
|
puts
|
20
20
|
puts "Deleting queue #{queue.name}"
|
21
21
|
queue.delete do |message_count|
|
data/lib/amq/client/queue.rb
CHANGED
@@ -327,11 +327,11 @@ module AMQ
|
|
327
327
|
end # handle_purge_ok(method)
|
328
328
|
|
329
329
|
def handle_bind_ok(method)
|
330
|
-
self.exec_callback_once(:bind)
|
330
|
+
self.exec_callback_once(:bind, method)
|
331
331
|
end # handle_bind_ok(method)
|
332
332
|
|
333
333
|
def handle_unbind_ok(method)
|
334
|
-
self.exec_callback_once(:unbind)
|
334
|
+
self.exec_callback_once(:unbind, method)
|
335
335
|
end # handle_unbind_ok(method)
|
336
336
|
|
337
337
|
def handle_delivery(method, header, payload)
|
data/lib/amq/client/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: amq-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 1369027945
|
5
5
|
prerelease: true
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 7
|
9
9
|
- 0
|
10
|
-
-
|
11
|
-
version: 0.7.0.
|
10
|
+
- alpha15
|
11
|
+
version: 0.7.0.alpha15
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Jakub Stastny
|