Method: ModelRecord#rid

Defined in:
lib/model/the_record.rb

#ridObject

Obtain the RID of the Record (format: 00:00)



33
34
35
36
37
38
39
# File 'lib/model/the_record.rb', line 33

def rid
  begin
    "#{@metadata[:cluster]}:#{@metadata[:record]}"
  rescue
    "0:0"
  end
end