# a BDB::Lsn object is created by the method log_checkpoint, log_curlsn, # log_flush, log_put class BDB::Lsn include Comparable # #compare 2 BDB::Lsn # def <=>(other) end # #The log_file function maps BDB::Lsn structures to file #names # def log_file(name) end #same than log_file def file(name) end # #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. # def log_flush end #same than log_flush def flush end # #return the String associated with this BDB::Lsn # def log_get end #same than log_get def get end end