amqp 1.4.2 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog.md +16 -6
- data/README.md +1 -1
- data/docs/AMQP091ModelExplained.textile +1 -1
- data/lib/amqp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0508c015054e3f1f726f916e00e3f9f944aa040
|
4
|
+
data.tar.gz: a6383870a502a0f7b1ff8ee3e9eb8813ca14f6bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d3ad3a96747356b85cb8e3571cdd1b08a796f894c0240534baea26af3b0ed6c03b6c67a843a993e2a7ea423267566ac328f5e81dc5b9b00e70d7eda9dc2599d
|
7
|
+
data.tar.gz: fa43c86b1dfafd8b9410b218983128c5e1bb65ffb9af5a19a0b44b1f80d424b296a8b57ed4647a7271c3c7da4e3918fbff06f2fe580206ad7cb6ce929a04c837
|
data/ChangeLog.md
CHANGED
@@ -1,12 +1,9 @@
|
|
1
|
-
## Changes Between 1.4.
|
1
|
+
## Changes Between 1.4.x and 1.5.0
|
2
2
|
|
3
3
|
### Only Await basic.consume-ok If nowait is false
|
4
4
|
|
5
5
|
Contributed by Rian McGuire.
|
6
6
|
|
7
|
-
|
8
|
-
## Changes Between 1.4.0 and 1.4.1
|
9
|
-
|
10
7
|
### Server-Named Queue Recovery Fix
|
11
8
|
|
12
9
|
Server-named queues are now correctly recovered again.
|
@@ -14,13 +11,26 @@ Server-named queues are now correctly recovered again.
|
|
14
11
|
Contributed by Jack C Hong.
|
15
12
|
|
16
13
|
|
17
|
-
|
18
14
|
## Changes Between 1.3.x and 1.4.0
|
19
15
|
|
20
16
|
### connection.blocked Support
|
21
17
|
|
22
18
|
[connection.blocked](https://www.rabbitmq.com/connection-blocked.html) notifications
|
23
|
-
are now correctly supported by the library
|
19
|
+
are now correctly supported by the library:
|
20
|
+
|
21
|
+
``` ruby
|
22
|
+
EventMachine.run do
|
23
|
+
connection = AMQP.connect(:host => '127.0.0.1')
|
24
|
+
|
25
|
+
connection.on_blocked do |conn, conn_blocked|
|
26
|
+
puts "Connection blocked, reason: #{conn_blocked.reason}"
|
27
|
+
end
|
28
|
+
|
29
|
+
connection.on_unblocked do |conn, _|
|
30
|
+
puts "Connection unblocked"
|
31
|
+
end
|
32
|
+
end
|
33
|
+
```
|
24
34
|
|
25
35
|
|
26
36
|
## Changes Between 1.2.x and 1.3.0
|
data/README.md
CHANGED
@@ -196,7 +196,7 @@ We cover Web application integration for multiple Ruby Web servers in [Connectin
|
|
196
196
|
|
197
197
|
## Community
|
198
198
|
|
199
|
-
* Join also [RabbitMQ mailing list](https://
|
199
|
+
* Join also [RabbitMQ mailing list](https://groups.google.com/forum/#!forum/rabbitmq-users) (the AMQP community epicenter).
|
200
200
|
* Join [Ruby AMQP mailing list](http://groups.google.com/group/ruby-amqp)
|
201
201
|
* Follow [@rubyamqp](https://twitter.com/rubyamqp) on Twitter for Ruby AMQP ecosystem updates.
|
202
202
|
* Stop by #rabbitmq on irc.freenode.net. You can use [Web IRC client](http://webchat.freenode.net?channels=rabbitmq) if you don't have IRC client installed.
|
@@ -313,7 +313,7 @@ be significantly easier.
|
|
313
313
|
h2. Wrapping up
|
314
314
|
|
315
315
|
This is the end of the AMQP 0.9.1 Model tutorial. Congratulations! Armed with this knowledge, you will find it easier to follow the rest of
|
316
|
-
the amqp gem documentation as well as the rabbitmq.com documentation and the "rabbitmq-discuss mailing list":
|
316
|
+
the amqp gem documentation as well as the rabbitmq.com documentation and the "rabbitmq-discuss mailing list":https://groups.google.com/forum/#!forum/rabbitmq-users
|
317
317
|
|
318
318
|
To stay up to date with amqp gem development, "follow @rubyamqp on Twitter":http://twitter.com/rubyamqp and "join our mailing list":http://groups.google.com/group/ruby-amqp.
|
319
319
|
|
data/lib/amqp/version.rb
CHANGED