Class CheckCorruptedCacheStoresCleanAction
- java.lang.Object
-
- org.apache.ignite.internal.processors.cache.persistence.CheckCorruptedCacheStoresCleanAction
-
- All Implemented Interfaces:
MaintenanceAction<Boolean>
public class CheckCorruptedCacheStoresCleanAction extends Object implements MaintenanceAction<Boolean>
-
-
Field Summary
Fields Modifier and Type Field Description static StringACTION_NAME
-
Constructor Summary
Constructors Constructor Description CheckCorruptedCacheStoresCleanAction(File rootStoreDir, String[] cacheStoreDirs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable Stringdescription()Booleanexecute()Executes operations of current maintenance action.@NotNull Stringname()
-
-
-
Field Detail
-
ACTION_NAME
public static final String ACTION_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
execute
public Boolean execute()
Executes operations of current maintenance action.- Specified by:
executein interfaceMaintenanceAction<Boolean>- Returns:
- Result of the maintenance action.
-
name
@NotNull public @NotNull String name()
- Specified by:
namein interfaceMaintenanceAction<Boolean>- Returns:
- Mandatory human-readable name of maintenance action.
All actions of single
MaintenanceWorkflowCallbackshould have unique names.
-
description
@Nullable public @Nullable String description()
- Specified by:
descriptionin interfaceMaintenanceAction<Boolean>- Returns:
- Optional user-readable description of maintenance action.
-
-