class BDB::Lsn
a BDB::Lsn
object is created by the method log_checkpoint, log_curlsn, log_flush
, log_put
Public Instance Methods
<=>(other)
click to toggle source
compare 2 BDB::Lsn
# File log.rb, line 9 def <=>(other) end
file(name)
click to toggle source
same than log_file
# File log.rb, line 20 def file(name) end
flush()
click to toggle source
same than log_flush
# File log.rb, line 31 def flush end
get()
click to toggle source
same than log_get
# File log.rb, line 40 def get end
log_file(name)
click to toggle source
The log_file function maps BDB::Lsn structures to file names
# File log.rb, line 16 def log_file(name) end
log_flush()
click to toggle source
The log_flush function guarantees that all log records whose DBB:Lsn are less than or equal to the current lsn have been written to disk.
# File log.rb, line 28 def log_flush end
log_get()
click to toggle source
return the String associated with this BDB::Lsn
# File log.rb, line 37 def log_get end