public interface FsCompositeDriver
| Modifier and Type | Method and Description |
|---|---|
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.
|
@NonNull FsController<?> newController(@NonNull FsModel model, @Nullable FsController<?> parent)
When called, the following expression is a precondition:
null == model.getParent()
? null == parent
: model.getParent().equals(parent.getModel())
model - the file system model.parent - the nullable parent file system controller.ServiceConfigurationError - if no appropriate file system driver
is found for the scheme of the given mount point.Copyright © 2005-2011 Schlichtherle IT Services. All Rights Reserved.