Class: Concurrent::Actor::UnknownMessage
- Includes:
- TypeCheck
- Defined in:
- lib/concurrent-ruby-edge/concurrent/actor/errors.rb
Instance Attribute Summary collapse
- #envelope ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(envelope) ⇒ UnknownMessage
constructor
A new instance of UnknownMessage.
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..inspect} from #{envelope.sender_path}" end |
Instance Attribute Details
#envelope ⇒ Object (readonly)
21 22 23 |
# File 'lib/concurrent-ruby-edge/concurrent/actor/errors.rb', line 21 def envelope @envelope end |