Uses of Class
org.h2.store.DiskFile

Packages that use DiskFile
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.log Undo and redo log implementation. 
org.h2.store Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa. 
 

Uses of DiskFile in org.h2.engine
 

Methods in org.h2.engine that return DiskFile
 DiskFile Database.getDataFile()
           
 DiskFile Database.getIndexFile()
           
 

Methods in org.h2.engine with parameters of type DiskFile
 Storage Database.getStorage(int id, DiskFile file)
          Get the storage object for the given file.
 void Database.removeStorage(int id, DiskFile file)
          Remove the storage object from the file.
 

Uses of DiskFile in org.h2.log
 

Methods in org.h2.log with parameters of type DiskFile
 void LogSystem.add(Session session, DiskFile file, Record record)
          Add an log entry to the last transaction log file.
 void LogSystem.addTruncate(Session session, DiskFile file, int storageId, int recordId, int blockCount)
          Add a truncate entry.
 

Uses of DiskFile in org.h2.store
 

Methods in org.h2.store that return DiskFile
 DiskFile Storage.getDiskFile()
           
 

Constructors in org.h2.store with parameters of type DiskFile
Storage(Database database, DiskFile file, RecordReader reader, int id)
          Create a new storage object for this file.