Class: Concurrent::ErlangActor::Down

Inherits:
Object
  • Object
show all
Defined in:
lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb

Overview

A message send by a monitored actor when terminated.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#fromPid (readonly)

Returns:



1469
1470
1471
# File 'lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb', line 1469

def from
  @from
end

#infoObject (readonly)

Returns:

  • (Object)


1473
1474
1475
# File 'lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb', line 1473

def info
  @info
end

#referenceReference (readonly)

Returns:



1471
1472
1473
# File 'lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb', line 1471

def reference
  @reference
end

Instance Method Details

#==(o) ⇒ true, false Also known as: eql?

Returns:

  • (true, false)


1488
1489
1490
# File 'lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb', line 1488

def ==(o)
  o.class == self.class && o.from == @from && o.reference == @reference && o.info == @info
end

#hashInteger

Returns:

  • (Integer)


1495
1496
1497
# File 'lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb', line 1495

def hash
  to_ary.hash
end

#to_ary::Array(Pis, Reference, Object)

Returns:



1483
1484
1485
# File 'lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb', line 1483

def to_ary
  [@from, @reference, @info]
end