Class: Mutant::Actor::Mailbox

Inherits:
Object
  • Object
show all
Includes:
Adamantium::Flat
Defined in:
lib/mutant/actor/mailbox.rb

Overview

Unbound mailbox

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.newMailbox

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return new mailbox



13
14
15
16
17
18
19
20
21
22
# File 'lib/mutant/actor/mailbox.rb', line 13

def self.new
  mutex              = Mutex.new
  condition_variable = ConditionVariable.new
  messages           = []

  super(
    Receiver.new(condition_variable, mutex, messages),
    Sender.new(condition_variable, mutex, messages)
  )
end

Instance Method Details

#bind(other) ⇒ Binding

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return binding for RPC to other actors



32
33
34
# File 'lib/mutant/actor/mailbox.rb', line 32

def bind(other)
  Binding.new(self, other)
end