Class: Concurrent::Actor::UnknownMessage

Inherits:
Error
  • Object
show all
Includes:
TypeCheck
Defined in:
lib/concurrent-ruby-edge/concurrent/actor/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from TypeCheck

#Child!, #Child?, #Match!, #Match?, #Type!, #Type?

Constructor Details

#initialize(envelope) ⇒ UnknownMessage

Returns a new instance of UnknownMessage.



23
24
25
26
# File 'lib/concurrent-ruby-edge/concurrent/actor/errors.rb', line 23

def initialize(envelope)
  @envelope = Type! envelope, Envelope
  super "#{envelope.message.inspect} from #{envelope.sender_path}"
end

Instance Attribute Details

#envelopeObject (readonly)



21
22
23
# File 'lib/concurrent-ruby-edge/concurrent/actor/errors.rb', line 21

def envelope
  @envelope
end