net.java.truevfs.kernel.impl.NeedsLockRetryException.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truevfs-kernel-impl Show documentation
Show all versions of truevfs-kernel-impl Show documentation
Implements the API for accessing the federated virtual file system space.
This reference implementation can get overridden by providing another
file system manager factory implementation with a higher priority on
the class path.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package net.java.truevfs.kernel.impl
import net.java.truecommons.shed._
/** Indicates that all file system locks need to get released before the
* operation can get retried.
*
* @see SyncController
* @author Christian Schlichtherle
*/
private final class NeedsLockRetryException private ()
extends ControlFlowException(false) with Immutable
private object NeedsLockRetryException {
import ControlFlowException._
private[this] val instance = new NeedsLockRetryException
def apply() = if (isTraceable) new NeedsLockRetryException else instance
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy