class Concurrent::ErlangActor::DownSignal

Attributes

info[R]

@return [Object]

Public Class Methods

new(from, reference, info) click to toggle source

@!visibility private

# File lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb, line 1439
def initialize(from, reference, info)
  super from, reference
  @info = info
end

Public Instance Methods

==(o) click to toggle source

@return [true, false]

Calls superclass method Concurrent::ErlangActor::HasReference#==
# File lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb, line 1450
def ==(o)
  super(o) && o.info == self.info
end
hash() click to toggle source

@return [Integer]

# File lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb, line 1455
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 1445
def to_ary
  [@from, @reference, @info]
end