Class: Erlang::Terms::Pid

Inherits:
Object
  • Object
show all
Defined in:
lib/rinterface/erlang/external_format.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#creationObject (readonly)

Returns the value of attribute creation.



9
10
11
# File 'lib/rinterface/erlang/external_format.rb', line 9

def creation
  @creation
end

#nodeObject (readonly)

Returns the value of attribute node.



9
10
11
# File 'lib/rinterface/erlang/external_format.rb', line 9

def node
  @node
end

#node_idObject (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

#serialObject (readonly)

Returns the value of attribute serial.



9
10
11
# File 'lib/rinterface/erlang/external_format.rb', line 9

def serial
  @serial
end