Class: Erlang::Terms::Pid
- Inherits:
-
Object
- Object
- Erlang::Terms::Pid
- Defined in:
- lib/rinterface/erlang/external_format.rb
Instance Attribute Summary collapse
-
#creation ⇒ Object
readonly
Returns the value of attribute creation.
-
#node ⇒ Object
readonly
Returns the value of attribute node.
-
#node_id ⇒ Object
readonly
Returns the value of attribute node_id.
-
#serial ⇒ Object
readonly
Returns the value of attribute serial.
Instance Method Summary collapse
-
#initialize(node, nid, serial, created) ⇒ Pid
constructor
A new instance of Pid.
Constructor Details
#initialize(node, nid, serial, created) ⇒ Pid
Returns a new instance of Pid.
10 11 12 13 14 15 |
# File 'lib/rinterface/erlang/external_format.rb', line 10 def initialize(node,nid,serial,created) @node = node @node_id = nid @serial = serial @creation = created end |
Instance Attribute Details
#creation ⇒ Object (readonly)
Returns the value of attribute creation.
9 10 11 |
# File 'lib/rinterface/erlang/external_format.rb', line 9 def creation @creation end |
#node ⇒ Object (readonly)
Returns the value of attribute node.
9 10 11 |
# File 'lib/rinterface/erlang/external_format.rb', line 9 def node @node end |
#node_id ⇒ Object (readonly)
Returns the value of attribute node_id.
9 10 11 |
# File 'lib/rinterface/erlang/external_format.rb', line 9 def node_id @node_id end |
#serial ⇒ Object (readonly)
Returns the value of attribute serial.
9 10 11 |
# File 'lib/rinterface/erlang/external_format.rb', line 9 def serial @serial end |