You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+56-41Lines changed: 56 additions & 41 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,9 +38,7 @@
38
38
### Supported Ruby versions
39
39
40
40
MRI 1.9.3, 2.0, 2.1, JRuby (1.9 mode), and Rubinius 2.x are supported.
41
-
Although native code is used for performance optimizations on some platforms, all functionality
42
-
is available in pure Ruby. This gem should be fully compatible with any interpreter that is
43
-
compliant with Ruby 1.9.3 or newer.
41
+
This gem should be fully compatible with any interpreter that is compliant with Ruby 1.9.3 or newer.
44
42
45
43
## Features & Documentation
46
44
@@ -59,10 +57,10 @@ This library contains a variety of concurrency abstractions at high and low leve
59
57
*[Async](./doc/async.md): A mixin module that provides simple asynchronous behavior to any standard class/object or object.
60
58
*[Future](./doc/future.md): An asynchronous operation that produces a value.
61
59
*[Dataflow](./doc/dataflow.md): Built on Futures, Dataflow allows you to create a task that will be scheduled when all of its data dependencies are available.
62
-
*[Promise](./doc/promise.md): Similar to Futures, with more features.
60
+
*[Promise](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Promise.html): Similar to Futures, with more features.
63
61
*[ScheduledTask](./doc/scheduled_task.md): Like a Future scheduled for a specific future time.
64
62
*[TimerTask](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/TimerTask.html): A Thread that periodically wakes up to perform work at regular intervals.
0 commit comments