concurrent-ruby-edge 0.4.1 → 0.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 +26 -0
- data/README.md +36 -4
- data/lib-edge/concurrent-edge.rb +4 -0
- data/lib-edge/concurrent/actor/reference.rb +3 -0
- data/lib-edge/concurrent/edge/cancellation.rb +78 -112
- data/lib-edge/concurrent/edge/channel.rb +450 -0
- data/lib-edge/concurrent/edge/erlang_actor.rb +1545 -0
- data/lib-edge/concurrent/edge/processing_actor.rb +83 -64
- data/lib-edge/concurrent/edge/promises.rb +80 -110
- data/lib-edge/concurrent/edge/throttle.rb +167 -141
- data/lib-edge/concurrent/edge/version.rb +3 -0
- metadata +8 -5
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: concurrent-ruby-edge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jerry D'Antonio
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2019-03-11 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: concurrent-ruby
|
@@ -18,14 +18,14 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - "~>"
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.1.
|
21
|
+
version: 1.1.5
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - "~>"
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 1.1.
|
28
|
+
version: 1.1.5
|
29
29
|
description: |
|
30
30
|
These features are under active development and may change frequently. They are expected not to
|
31
31
|
keep backward compatibility (there may also lack tests and documentation). Semantic versions will
|
@@ -89,6 +89,8 @@ files:
|
|
89
89
|
- lib-edge/concurrent/channel/tick.rb
|
90
90
|
- lib-edge/concurrent/edge.rb
|
91
91
|
- lib-edge/concurrent/edge/cancellation.rb
|
92
|
+
- lib-edge/concurrent/edge/channel.rb
|
93
|
+
- lib-edge/concurrent/edge/erlang_actor.rb
|
92
94
|
- lib-edge/concurrent/edge/lock_free_linked_set.rb
|
93
95
|
- lib-edge/concurrent/edge/lock_free_linked_set/node.rb
|
94
96
|
- lib-edge/concurrent/edge/lock_free_linked_set/window.rb
|
@@ -97,6 +99,7 @@ files:
|
|
97
99
|
- lib-edge/concurrent/edge/processing_actor.rb
|
98
100
|
- lib-edge/concurrent/edge/promises.rb
|
99
101
|
- lib-edge/concurrent/edge/throttle.rb
|
102
|
+
- lib-edge/concurrent/edge/version.rb
|
100
103
|
- lib-edge/concurrent/lazy_register.rb
|
101
104
|
homepage: http://www.concurrent-ruby.com
|
102
105
|
licenses:
|
@@ -118,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
121
|
version: '0'
|
119
122
|
requirements: []
|
120
123
|
rubyforge_project:
|
121
|
-
rubygems_version: 2.7.
|
124
|
+
rubygems_version: 2.7.8
|
122
125
|
signing_key:
|
123
126
|
specification_version: 4
|
124
127
|
summary: Edge features and additions to the concurrent-ruby gem.
|