Skip to content

Commit 7821e0c

Browse files
authored
Update README.md
1 parent 2fb7526 commit 7821e0c

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -182,22 +182,25 @@ Thread-safe variables:
182182

183183
#### Deprecated
184184

185-
Deprecated features are still available and maintained, but new features will not be added. They
186-
will be eventually removed in next major version.
185+
Deprecated features are still available and bugs are being fixed, but new features will not be added.
187186

188187
* ~~[Future](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Future.html):
189-
An asynchronous operation that produces a value.~~
188+
An asynchronous operation that produces a value.~~ Replaced by
189+
[Promises Framework](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Promises.html).
190190
* ~~[Dataflow](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent.html#dataflow-class_method):
191191
Built on Futures, Dataflow allows you to create a task that will be scheduled when all of
192-
its data dependencies are available.~~
192+
its data dependencies are available.~~ Replaced by
193+
[Promises Framework](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Promises.html).
193194
* ~~[Promise](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Promise.html): Similar
194-
to Futures, with more features.~~
195+
to Futures, with more features.~~ Replaced by
196+
[Promises Framework](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Promises.html).
195197
* ~~[Delay](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Delay.html) Lazy evaluation
196198
of a block yielding an immutable result. Based on Clojure's
197-
[delay](https://clojuredocs.org/clojure.core/delay).~~
198-
199+
[delay](https://clojuredocs.org/clojure.core/delay).~~ Replaced by
200+
[Promises Framework](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Promises.html).
199201
* ~~[IVar](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/IVar.html) Similar to a
200-
"future" but can be manually assigned once, after which it becomes immutable.~~
202+
"future" but can be manually assigned once, after which it becomes immutable.~~ Replaced by
203+
[Promises Framework](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Promises.html).
201204

202205
### Edge Features
203206

0 commit comments

Comments
 (0)