Created
January 17, 2022 01:14
-
-
Save leandronsp/179d025b8be46692da74f4ed5a3f1630 to your computer and use it in GitHub Desktop.
A dead simple Actor in Ruby, simulating the same API for Ractors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Cractor | |
def initialize(*args, &block) | |
@inbox = Queue.new | |
@outbox = Queue.new | |
Thread.new do | |
result = yield(self, *args) | |
self.yield(result) | |
end | |
self | |
end | |
def receive | |
@inbox.pop | |
end | |
def send(element) | |
@inbox.push(element) | |
self | |
end | |
def yield(element) | |
@outbox.push(element) | |
end | |
def take | |
@outbox.pop | |
end | |
end | |
@state = Cractor.new(0) do |instance, balance| | |
loop do | |
message = instance.receive | |
case message | |
in increment: value then balance += value.to_i | |
in get: :balance then instance.yield(balance) | |
end | |
end | |
end | |
100.times do | |
@state.send({ increment: 1 }) | |
end | |
balance = @state.send({ get: :balance }).take | |
puts "Balance is: #{balance}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment