Class: Concurrent::ErlangActor::DownSignal
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
|
|
|
Instance Chain:
|
|
| Inherits: |
Concurrent::ErlangActor::AbstractSignal
|
| Defined in: | lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb |
Class Attribute Summary
Synchronization::Object - Inherited
Class Method Summary
- .new(from, reference, info) ⇒ DownSignal constructor private
Synchronization::Object - Inherited
| .atomic_attribute?, .atomic_attributes, | |
| .attr_atomic | Creates methods for reading and writing to a instance variable with volatile (Java) semantic as |
| .attr_volatile | Creates methods for reading and writing (as |
| .ensure_safe_initialization_when_final_fields_are_present | For testing purposes, quite slow. |
| .new | Has to be called by children. |
| .safe_initialization!, .define_initialize_atomic_fields | |
Synchronization::AbstractObject - Inherited
Instance Attribute Summary
Instance Method Summary
HasReference - Included
HasFrom - Included
| #==, | |
| #eql? | Alias for HasFrom#==. |
| #hash, #initialize | |
Synchronization::Object - Inherited
Synchronization::Volatile - Included
Synchronization::AbstractObject - Inherited
Constructor Details
.new(from, reference, info) ⇒ DownSignal (private)
# File 'lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb', line 1443
def initialize(from, reference, info) super from, reference @info = info end
Instance Attribute Details
#info ⇒ Object (readonly)
# File 'lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb', line 1440
attr_reader :info
Instance Method Details
#==(o) ⇒ true, false
#hash ⇒ Integer
# File 'lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb', line 1459
def hash to_ary.hash end
#to_ary ⇒ ::Array(Pis, Reference, Object)
# File 'lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb', line 1449
def to_ary [@from, @reference, @info] end