org.h2.store |
Javadoc package documentation
Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa.
|
Java Source File Name | Type | Comment |
DataHandler.java | Interface | A data handler contains a number of callback methods. |
DataPage.java | Class | A data page is a byte buffer that contains persistent data of a row or index
page. |
DataPageBinary.java | Class | This class represents a byte buffer optimized for performance. |
DataPageText.java | Class | This class represents a byte buffer that is human readable up to some point. |
DiskFile.java | Class | This class represents a file that is usually written to disk. |
FileLister.java | Class | Utility class to list the files of a database. |
FileLock.java | Class | The file lock is used to lock a database so that only one process can write
to it. |
FileStore.java | Class | This class is an abstraction of a random access file. |
FileStoreInputStream.java | Class | An input stream that is backed by a file store. |
FileStoreOutputStream.java | Class | An output stream that is backed by a file store. |
Record.java | Class | A record represents a persisted row in a table, or a index page. |
RecordReader.java | Interface | A record reader is able to create a
Record from a
DataPage . |
Storage.java | Class | This class represents an persistent container that stores data of a table or
an index. |
WriterThread.java | Class | The writer thread is responsible to flush the transaction log file from time
to time. |