class Concurrent::Actor::Behaviour::SetResults
Collects returning value and sets the ResolvableFuture in the {Envelope} or error on failure.
Attributes
Public Class Methods
Source
# File lib/concurrent-ruby-edge/concurrent/actor/behaviour/sets_results.rb, line 10 def initialize(core, subsequent, core_options, error_strategy) super core, subsequent, core_options @error_strategy = Match! error_strategy, :just_log, :terminate!, :pause! end
Calls superclass method
Concurrent::Actor::Behaviour::Abstract::new
Public Instance Methods
Source
# File lib/concurrent-ruby-edge/concurrent/actor/behaviour/sets_results.rb, line 15 def on_envelope(envelope) result = pass envelope if result != MESSAGE_PROCESSED && !envelope.future.nil? envelope.future.fulfill result log(DEBUG) { "finished processing of #{envelope.message.inspect}"} end nil rescue => error log ERROR, error case error_strategy when :terminate! terminate! when :pause! behaviour!(Pausing).pause!(error) when :just_log # nothing else raise end envelope.future.reject error unless envelope.future.nil? end