Package alluxio.job
Interface CmdConfig
-
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
CliConfig
- All Known Implementing Classes:
LoadCliConfig,MigrateCliConfig,PersistCmdConfig
public interface CmdConfig extends java.io.SerializableA Cmd configuration. All the subclasses are both Java and JSON serializable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<java.lang.String>affectedPaths()JobSourcegetJobSource()java.lang.StringgetName()alluxio.grpc.OperationTypegetOperationType()
-
-
-
Method Detail
-
getName
java.lang.String getName()
- Returns:
- name of the Cmd job
-
getJobSource
JobSource getJobSource()
- Returns:
- JobSource of the Cmd job
-
getOperationType
alluxio.grpc.OperationType getOperationType()
- Returns:
- OperationType of the Cmd job
-
affectedPaths
java.util.Collection<java.lang.String> affectedPaths()
- Returns:
- list of affected paths
-
-