Package alluxio.master.backcompat
Class FsTestOp
- java.lang.Object
-
- alluxio.master.backcompat.FsTestOp
-
- All Implemented Interfaces:
TestOp
- Direct Known Subclasses:
AsyncPersist,CreateDirectory,CreateFile,Delete,Mount,PersistDirectory,Rename,SetAcl
public abstract class FsTestOp extends java.lang.Object implements TestOp
A test operation which only needs the FileSystem client.
-
-
Constructor Summary
Constructors Constructor Description FsTestOp()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract voidapply(alluxio.client.file.FileSystem fs)voidapply(alluxio.multi.process.Clients clients)Applies the test operation.protected abstract voidcheck(alluxio.client.file.FileSystem fs)voidcheck(alluxio.multi.process.Clients clients)Verifies the result of the test operation.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface alluxio.master.backcompat.TestOp
supportsVersion
-
-
-
-
Method Detail
-
apply
public void apply(alluxio.multi.process.Clients clients) throws java.lang.ExceptionDescription copied from interface:TestOpApplies the test operation.
-
apply
protected abstract void apply(alluxio.client.file.FileSystem fs) throws java.lang.Exception- Throws:
java.lang.Exception
-
check
public void check(alluxio.multi.process.Clients clients) throws java.lang.ExceptionDescription copied from interface:TestOpVerifies the result of the test operation.
-
check
protected abstract void check(alluxio.client.file.FileSystem fs) throws java.lang.Exception- Throws:
java.lang.Exception
-
-