Class: Concurrent::Actor::Envelope

Inherits:
Object
  • Object
show all
Includes:
TypeCheck
Defined in:
lib-edge/concurrent/actor/envelope.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, future, sender, address) ⇒ Envelope

Returns a new instance of Envelope.



17
18
19
20
21
22
# File 'lib-edge/concurrent/actor/envelope.rb', line 17

def initialize(message, future, sender, address)
  @message = message
  @future  = Type! future, Promises::ResolvableFuture, NilClass
  @sender  = Type! sender, Reference, Thread
  @address = Type! address, Reference
end

Instance Attribute Details

#addressundocumented (readonly)



15
# File 'lib-edge/concurrent/actor/envelope.rb', line 15

attr_reader :message, :future, :sender, :address

#futureEdge::Future (readonly)

Returns a future which becomes resolved after message is processed.

Returns:

  • (Edge::Future)

    a future which becomes resolved after message is processed



15
# File 'lib-edge/concurrent/actor/envelope.rb', line 15

attr_reader :message, :future, :sender, :address

#messageObject (readonly)

Returns a message.

Returns:

  • (Object)

    a message



15
16
17
# File 'lib-edge/concurrent/actor/envelope.rb', line 15

def message
  @message
end

#senderReference, Thread (readonly)

Returns an actor or thread sending the message.

Returns:

  • (Reference, Thread)

    an actor or thread sending the message



15
# File 'lib-edge/concurrent/actor/envelope.rb', line 15

attr_reader :message, :future, :sender, :address

Instance Method Details

#address_pathundocumented



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

def address_path
  address.path
end

#reject!(error) ⇒ undocumented



36
37
38
# File 'lib-edge/concurrent/actor/envelope.rb', line 36

def reject!(error)
  future.reject error unless future.nil?
end

#sender_pathundocumented



24
25
26
27
28
29
30
# File 'lib-edge/concurrent/actor/envelope.rb', line 24

def sender_path
  if sender.is_a? Reference
    sender.path
  else
    sender.to_s
  end
end

#Child!(value, *types) ⇒ undocumented Originally defined in module TypeCheck

#Child?(value, *types) ⇒ Boolean Originally defined in module TypeCheck

Returns:

  • (Boolean)

#Match!(value, *types) ⇒ undocumented Originally defined in module TypeCheck

#Match?(value, *types) ⇒ Boolean Originally defined in module TypeCheck

Returns:

  • (Boolean)

#Type!(value, *types) ⇒ undocumented Originally defined in module TypeCheck

#Type?(value, *types) ⇒ Boolean Originally defined in module TypeCheck

Returns:

  • (Boolean)