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
*[Actor](./doc/actor/main.md): Implements the Actor Model, where concurrent actors exchange messages.
58
-
*[Agent](./doc/agent.md): A single atomic value that represents an identity.
59
-
*[Async](./doc/async.md): A mixin module that provides simple asynchronous behavior to any standard class/object or object.
60
-
*[Future](./doc/future.md): An asynchronous operation that produces a value.
61
-
*[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.
63
-
*[ScheduledTask](./doc/scheduled_task.md): Like a Future scheduled for a specific future time.
57
+
*[Actor](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Actor.html): Implements the Actor Model, where concurrent actors exchange messages.
58
+
*[Agent](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Agent.html): A single atomic value that represents an identity.
59
+
*[Async](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Async.html): A mixin module that provides simple asynchronous behavior to any standard class/object or object.
60
+
*[Future](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Future.html): An asynchronous operation that produces a value.
61
+
*[Dataflow](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Dataflow.html): Built on Futures, Dataflow allows you to create a task that will be scheduled when all of its data dependencies are available.
62
+
*[Promise](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Promise.html): Similar to Futures, with more features.
63
+
*[ScheduledTask](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/ScheduledTask.html): Like a Future scheduled for a specific future time.
64
64
*[TimerTask](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/TimerTask.html): A Thread that periodically wakes up to perform work at regular intervals.
65
65
66
66
67
67
### Java-inspired ThreadPools and other executors
68
68
69
-
* See [ThreadPool](./doc/thread_pools.md) overview, which also contains a list of other Executors available.
69
+
* See [ThreadPool](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/ThreadPoolExecutor.html) overview, which also contains a list of other Executors available.
70
70
71
71
### Thread-safe Observers
72
72
@@ -94,7 +94,7 @@ Lower-level abstractions mainly used as building blocks.
0 commit comments