class Concurrent::ErlangActor::Down
A message send by a monitored actor when terminated.
Attributes
from[R]
@return [Pid]
info[R]
@return [Object]
reference[R]
@return [Reference]
Public Class Methods
new(from, reference, info)
click to toggle source
@!visibility private
# File lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb, line 1472 def initialize(from, reference, info) @from = from @reference = reference @info = info end
Public Instance Methods
==(o)
click to toggle source
@return [true, false]
# File lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb, line 1484 def ==(o) o.class == self.class && o.from == @from && o.reference == @reference && o.info == @info end
Also aliased as: eql?
hash()
click to toggle source
@return [Integer]
# File lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb, line 1491 def hash to_ary.hash end
to_ary()
click to toggle source
@return [::Array(Pis, Reference
, Object)]
# File lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb, line 1479 def to_ary [@from, @reference, @info] end