Uses of Class
org.h2.store.fs.FilePathWrapper
Packages that use FilePathWrapper
Package
Description
Classes related to caching.
A file system abstraction.
This file system stores files on disk and uses java.nio.channels.AsynchronousFileChannel to access the files.
An encrypted file system abstraction.
This file system stores files on disk and uses java.nio to access the files.
A file system that records all write operations and can re-play them.
A file system that re-opens and re-tries the operation if the file was closed, because a thread was interrupted.
A file system that may split files into multiple smaller files
(required for a FAT32 because it only support files up to 2 GB).
-
Uses of FilePathWrapper in org.h2.mvstore.cache
Subclasses of FilePathWrapper in org.h2.mvstore.cache -
Uses of FilePathWrapper in org.h2.store.fs
Methods in org.h2.store.fs that return FilePathWrapperModifier and TypeMethodDescriptionprivate FilePathWrapper
Create a wrapped path instance for the given base path. -
Uses of FilePathWrapper in org.h2.store.fs.async
Subclasses of FilePathWrapper in org.h2.store.fs.asyncModifier and TypeClassDescriptionclass
This file system stores files on disk and uses java.nio.channels.AsynchronousFileChannel to access the files. -
Uses of FilePathWrapper in org.h2.store.fs.encrypt
Subclasses of FilePathWrapper in org.h2.store.fs.encrypt -
Uses of FilePathWrapper in org.h2.store.fs.niomapped
Subclasses of FilePathWrapper in org.h2.store.fs.niomappedModifier and TypeClassDescriptionclass
This file system stores files on disk and uses java.nio to access the files. -
Uses of FilePathWrapper in org.h2.store.fs.rec
Subclasses of FilePathWrapper in org.h2.store.fs.recModifier and TypeClassDescriptionclass
A file system that records all write operations and can re-play them. -
Uses of FilePathWrapper in org.h2.store.fs.retry
Subclasses of FilePathWrapper in org.h2.store.fs.retryModifier and TypeClassDescriptionclass
A file system that re-opens and re-tries the operation if the file was closed, because a thread was interrupted. -
Uses of FilePathWrapper in org.h2.store.fs.split
Subclasses of FilePathWrapper in org.h2.store.fs.splitModifier and TypeClassDescriptionclass
A file system that may split files into multiple smaller files.