Class: Concurrent::Actor::Behaviour::Abstract

Inherits:
Object
  • Object
show all
Includes:
InternalDelegations, TypeCheck
Defined in:
lib/concurrent-ruby-edge/concurrent/actor/behaviour/abstract.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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(core, subsequent, core_options) ⇒ Abstract

Returns a new instance of Abstract.



14
15
16
17
# File 'lib/concurrent-ruby-edge/concurrent/actor/behaviour/abstract.rb', line 14

def initialize(core, subsequent, core_options)
  @core       = Type! core, Core
  @subsequent = Type! subsequent, Abstract, NilClass
end

Instance Attribute Details

#coreObject (readonly)



12
13
14
# File 'lib/concurrent-ruby-edge/concurrent/actor/behaviour/abstract.rb', line 12

def core
  @core
end

#subsequentObject (readonly)



12
13
14
# File 'lib/concurrent-ruby-edge/concurrent/actor/behaviour/abstract.rb', line 12

def subsequent
  @subsequent
end

Instance Method Details

#broadcast(public, event) ⇒ Object

broadcasts event to all behaviours and context



39
40
41
# File 'lib/concurrent-ruby-edge/concurrent/actor/behaviour/abstract.rb', line 39

def broadcast(public, event)
  core.broadcast(public, event)
end

#on_envelope(envelope) ⇒ Object

Note:

super needs to be called not to break the chain

override to add extra behaviour



21
22
23
# File 'lib/concurrent-ruby-edge/concurrent/actor/behaviour/abstract.rb', line 21

def on_envelope(envelope)
  pass envelope
end

#on_event(public, event) ⇒ Object

Note:

super needs to be called not to break the chain

override to add extra behaviour



32
33
34
# File 'lib/concurrent-ruby-edge/concurrent/actor/behaviour/abstract.rb', line 32

def on_event(public, event)
  subsequent.on_event public, event if subsequent
end

#pass(envelope) ⇒ Object

Parameters:



26
27
28
# File 'lib/concurrent-ruby-edge/concurrent/actor/behaviour/abstract.rb', line 26

def pass(envelope)
  subsequent.on_envelope envelope
end

#reject_envelope(envelope) ⇒ Object



43
44
45
46
47
# File 'lib/concurrent-ruby-edge/concurrent/actor/behaviour/abstract.rb', line 43

def reject_envelope(envelope)
  envelope.reject! ActorTerminated.new(reference)
  dead_letter_routing << envelope unless envelope.future
  log(DEBUG) { "rejected #{envelope.message} from #{envelope.sender_path}"}
end