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
+6-1
Original file line number
Diff line number
Diff line change
@@ -271,7 +271,12 @@ Everything within this gem can be loaded simply by requiring it:
271
271
require'concurrent'
272
272
```
273
273
274
-
*Requiring only specific abstractions from Concurrent Ruby is not yet supported.*
274
+
You can also require a specific abstraction [part of the public documentation](https://ruby-concurrency.github.io/concurrent-ruby/master/index.html) since concurrent-ruby 1.2.0, for example:
275
+
```ruby
276
+
require'concurrent/map'
277
+
require'concurrent/atomic/atomic_reference'
278
+
require'concurrent/executor/fixed_thread_pool'
279
+
```
275
280
276
281
To use the tools in the Edge gem it must be required separately:
0 commit comments