Class: Concurrent::Actor::Behaviour::ErrorsOnUnknownMessage
- Defined in:
- lib/concurrent-ruby-edge/concurrent/actor/behaviour/errors_on_unknown_message.rb
Overview
Simply fails when message arrives here. It's usually the last behaviour.
Instance Method Summary collapse
Constructor Details
This class inherits a constructor from Concurrent::Actor::Behaviour::Abstract
Instance Method Details
#on_envelope(envelope) ⇒ undocumented
6 7 8 |
# File 'lib/concurrent-ruby-edge/concurrent/actor/behaviour/errors_on_unknown_message.rb', line 6 def on_envelope(envelope) raise UnknownMessage, envelope end |