class Concurrent::Actor::UnknownMessage

Attributes

envelope[R]

Public Class Methods

new(envelope) click to toggle source
Calls superclass method
# File lib-edge/concurrent/actor/errors.rb, line 21
def initialize(envelope)
  @envelope = Type! envelope, Envelope
  super "#{envelope.message.inspect} from #{envelope.sender_path}"
end