Ractor::TMVar
TMVar for Ractor inspired by Haskell's TMVar based on Ractor::TVar.
Installation
Add this line to your application's Gemfile:
gem 'ractor-tmvar'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install ractor-tmvar
Usage
require 'ractor/tmvar'
tv1 = Ractor::TMVar.new(0)
tv2 = Ractor::TMVar.new(0)
rs = 100.times.map do
Ractor.new tv1, tv2 do |v1, v2|
value1 = nil
value2 = nil
Ractor.atomically do
# take value like takeTMVar in Haskell
value1 = v1.take
value2 = v2.take
end
Ractor.atomically do
# set value like putTMVar in Haskell
v2.put(value2 + 2)
v1.put(value1 + 1)
end
end
end
rs.each(&:take)
tv1.read #=> 100
tv2.read #=> 200
Development
After checking out the repo, run bin/setup
to install dependencies. Then, run rake test
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/yoshitsugu/ractor-tmvar.
License
The gem is available as open source under the terms of the MIT License.