Class: Concurrent::Actor::Utils::Pool
- Inherits:
-
RestartingContext
- Object
- AbstractContext
- RestartingContext
- Concurrent::Actor::Utils::Pool
- Defined in:
- lib/concurrent/actor/utils/pool.rb
Overview
Allows to create a pool of workers and distribute work between them
Instance Attribute Summary
Attributes inherited from AbstractContext
Instance Method Summary collapse
-
#initialize(size, &worker_initializer) ⇒ Pool
constructor
A new instance of Pool.
- #on_message(message) ⇒ Object
Methods inherited from RestartingContext
Methods inherited from AbstractContext
#ask, #behaviour_definition, #dead_letter_routing, #default_executor, #default_reference_class, #envelope, #on_envelope, #on_event, #pass, spawn, spawn!, #tell
Methods included from InternalDelegations
#behaviour, #behaviour!, #children, #context, #dead_letter_routing, #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(size, &worker_initializer) ⇒ Pool
Returns a new instance of Pool.
30 31 32 33 34 35 36 37 |
# File 'lib/concurrent/actor/utils/pool.rb', line 30 def initialize(size, &worker_initializer) @balancer = Balancer.spawn name: :balancer, supervise: true @workers = ::Array.new(size, &worker_initializer) @workers.each do |worker| Type! worker, Reference @balancer << [:subscribe, worker] end end |
Instance Method Details
#on_message(message) ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/concurrent/actor/utils/pool.rb', line 39 def () command, _ = return if [:restarted, :reset, :resumed, :terminated].include? command # ignore events from supervised actors envelope_to_redirect = if envelope.future envelope else Envelope.new(envelope., Concurrent.future, envelope.sender, envelope.address) end envelope_to_redirect.future.on_completion! { @balancer << :subscribe } # TODO check safety of @balancer reading redirect @balancer, envelope_to_redirect end |