Class: Concurrent::Actor::Root
- Inherits:
-
AbstractContext
- Object
- AbstractContext
- Concurrent::Actor::Root
- Defined in:
- lib/concurrent-ruby-edge/concurrent/actor/root.rb
Overview
implements the root actor
Instance Attribute Summary
Attributes inherited from AbstractContext
Instance Method Summary collapse
- #behaviour_definition ⇒ Object
- #dead_letter_routing ⇒ Object
-
#initialize ⇒ Root
constructor
A new instance of Root.
-
#on_message(message) ⇒ Object
to allow spawning of new actors, spawn needs to be called inside the parent Actor.
Methods inherited from AbstractContext
#ask, #default_executor, #default_reference_class, #envelope, #on_envelope, #on_event, #pass, spawn, spawn!, #tell
Methods included from InternalDelegations
#behaviour, #behaviour!, #children, #context, #log, #redirect, #terminate!, #terminated?
Methods included from PublicDelegations
#context_class, #executor, #name, #parent, #path, #reference
Methods included from TypeCheck
#Child!, #Child?, #Match!, #Match?, #Type!, #Type?
Constructor Details
#initialize ⇒ Root
Returns a new instance of Root.
9 10 11 12 13 14 15 |
# File 'lib/concurrent-ruby-edge/concurrent/actor/root.rb', line 9 def initialize # noinspection RubyArgCount @dead_letter_router = Core.new(parent: reference, class: DefaultDeadLetterHandler, supervise: true, name: :default_dead_letter_handler).reference end |
Instance Method Details
#behaviour_definition ⇒ Object
33 34 35 36 37 |
# File 'lib/concurrent-ruby-edge/concurrent/actor/root.rb', line 33 def behaviour_definition [*Behaviour.base(:just_log), *Behaviour.supervising, *Behaviour.] end |
#dead_letter_routing ⇒ Object
29 30 31 |
# File 'lib/concurrent-ruby-edge/concurrent/actor/root.rb', line 29 def dead_letter_routing @dead_letter_router end |
#on_message(message) ⇒ Object
to allow spawning of new actors, spawn needs to be called inside the parent Actor
18 19 20 21 22 23 24 25 26 27 |
# File 'lib/concurrent-ruby-edge/concurrent/actor/root.rb', line 18 def () case when .is_a?(::Array) && .first == :spawn Actor.spawn [1], &[2] when == :dead_letter_routing @dead_letter_router else # ignore end end |