@Immutable public final class FileDriver extends FsDriver
| Constructor and Description |
|---|
FileDriver() |
| Modifier and Type | Method and Description |
|---|---|
int |
getPriority()
Returns a priority to help the file system driver service locator.
|
FsController<?> |
newController(FsModel model,
FsController<?> parent)
Returns a new thread-safe file system controller for the mount point of
the given file system model and parent file system controller.
|
isFederated, toStringpublic int getPriority()
getPriority in class FsDriver100 or Integer.MIN_VALUE, depending on the
availability of the NIO.2 API.public FsController<?> newController(FsModel model, @CheckForNull FsController<?> parent)
FsDriverWhen called, you may safely assume the following precondition:
assert null == model.getParent()
? null == parent
: model.getParent().equals(parent.getModel())
newController in class FsDrivermodel - the file system model.parent - the nullable parent file system controller.FsCompositeDriver.newController(de.schlichtherle.truezip.fs.FsModel, de.schlichtherle.truezip.fs.FsController<?>)Copyright © 2005-2012 Schlichtherle IT Services. All Rights Reserved.