qpid_proton 0.21.0 → 0.22.0
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/examples/README.md +26 -10
- data/examples/broker.rb +99 -91
- data/examples/example_test.rb +11 -11
- data/ext/cproton/cproton.c +3 -3
- data/lib/core/connection.rb +18 -12
- data/lib/core/connection_driver.rb +13 -3
- data/lib/core/container.rb +276 -120
- data/lib/core/disposition.rb +1 -1
- data/lib/core/endpoint.rb +3 -0
- data/lib/core/listener.rb +6 -0
- data/lib/core/message.rb +5 -9
- data/lib/core/messaging_handler.rb +5 -1
- data/lib/core/receiver.rb +1 -2
- data/lib/core/sasl.rb +1 -1
- data/lib/core/session.rb +6 -4
- data/lib/core/terminus.rb +10 -4
- data/lib/core/transfer.rb +3 -0
- data/lib/core/transport.rb +1 -0
- data/lib/core/uri.rb +9 -10
- data/lib/core/work_queue.rb +76 -0
- data/lib/qpid_proton.rb +2 -8
- data/lib/types/array.rb +1 -0
- data/lib/types/hash.rb +0 -11
- data/lib/util/schedule.rb +79 -0
- data/lib/util/wrapper.rb +4 -0
- data/tests/old_examples/old_example_test.rb +0 -8
- data/tests/test_container.rb +203 -126
- data/tests/test_container_sasl.rb +141 -0
- data/tests/test_interop.rb +1 -1
- data/tests/test_messaging_adapter.rb +1 -1
- data/tests/test_tools.rb +30 -5
- data/tests/test_uri.rb +2 -0
- metadata +5 -9
- data/lib/messenger/messenger.rb +0 -703
- data/lib/messenger/subscription.rb +0 -36
- data/lib/messenger/tracker.rb +0 -37
- data/lib/messenger/tracker_status.rb +0 -68
- data/lib/util/timeout.rb +0 -49
- data/tests/old_examples/recv.rb +0 -23
- data/tests/old_examples/send.rb +0 -21
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: qpid_proton
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Darryl L. Pierce
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-04-02 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: |
|
15
15
|
Proton is a high performance, lightweight messaging library. It can be used in
|
@@ -76,14 +76,11 @@ files:
|
|
76
76
|
- lib/core/transport.rb
|
77
77
|
- lib/core/uri.rb
|
78
78
|
- lib/core/url.rb
|
79
|
+
- lib/core/work_queue.rb
|
79
80
|
- lib/handler/adapter.rb
|
80
81
|
- lib/handler/messaging_adapter.rb
|
81
82
|
- lib/handler/messaging_handler.rb
|
82
83
|
- lib/handler/reactor_messaging_adapter.rb
|
83
|
-
- lib/messenger/messenger.rb
|
84
|
-
- lib/messenger/subscription.rb
|
85
|
-
- lib/messenger/tracker.rb
|
86
|
-
- lib/messenger/tracker_status.rb
|
87
84
|
- lib/qpid_proton.rb
|
88
85
|
- lib/reactor/container.rb
|
89
86
|
- lib/types/array.rb
|
@@ -93,7 +90,7 @@ files:
|
|
93
90
|
- lib/types/type.rb
|
94
91
|
- lib/util/deprecation.rb
|
95
92
|
- lib/util/error_handler.rb
|
96
|
-
- lib/util/
|
93
|
+
- lib/util/schedule.rb
|
97
94
|
- lib/util/version.rb
|
98
95
|
- lib/util/wrapper.rb
|
99
96
|
- tests/old_examples/broker.rb
|
@@ -108,13 +105,12 @@ files:
|
|
108
105
|
- tests/old_examples/lib/selectable.rb
|
109
106
|
- tests/old_examples/lib/send_and_receive.rb
|
110
107
|
- tests/old_examples/old_example_test.rb
|
111
|
-
- tests/old_examples/recv.rb
|
112
|
-
- tests/old_examples/send.rb
|
113
108
|
- tests/old_examples/server.rb
|
114
109
|
- tests/old_examples/simple_recv.rb
|
115
110
|
- tests/old_examples/simple_send.rb
|
116
111
|
- tests/test_connection_driver.rb
|
117
112
|
- tests/test_container.rb
|
113
|
+
- tests/test_container_sasl.rb
|
118
114
|
- tests/test_data.rb
|
119
115
|
- tests/test_delivery.rb
|
120
116
|
- tests/test_interop.rb
|