Uses of Interface
com.atlassian.confluence.impl.system.task.SystemMaintenanceTask
-
Packages that use SystemMaintenanceTask Package Description com.atlassian.confluence.impl.system com.atlassian.confluence.impl.system.runner com.atlassian.confluence.impl.system.task -
-
Uses of SystemMaintenanceTask in com.atlassian.confluence.impl.system
Methods in com.atlassian.confluence.impl.system with type parameters of type SystemMaintenanceTask Modifier and Type Method Description <T extends SystemMaintenanceTask>
voidDefaultSystemMaintenanceTaskRegistry. register(SystemMaintenanceTaskType taskType, SystemMaintenanceTaskRunner<T> taskRunner)
<T extends SystemMaintenanceTask>
voidSystemMaintenanceTaskRegistry. register(SystemMaintenanceTaskType taskType, SystemMaintenanceTaskRunner<T> taskRunner)
RegistertaskRunner
to run tasks of a specific typeMethods in com.atlassian.confluence.impl.system with parameters of type SystemMaintenanceTask Modifier and Type Method Description void
JournalSystemMaintenanceTaskQueue. enqueue(SystemMaintenanceTask task)
void
SystemMaintenanceTaskQueue. enqueue(SystemMaintenanceTask task)
Add a new task to this queue. -
Uses of SystemMaintenanceTask in com.atlassian.confluence.impl.system.runner
Classes in com.atlassian.confluence.impl.system.runner with type parameters of type SystemMaintenanceTask Modifier and Type Interface Description interface
SystemMaintenanceTaskRunner<T extends SystemMaintenanceTask>
Run aSystemMaintenanceTask
. -
Uses of SystemMaintenanceTask in com.atlassian.confluence.impl.system.task
Classes in com.atlassian.confluence.impl.system.task that implement SystemMaintenanceTask Modifier and Type Class Description class
CreateIndexSnapshotMaintenanceTask
Create an index snapshot after a successful reindex in DCclass
RestoreIndexSnapshotMaintenanceTask
ASystemMaintenanceTask
that is created when a node uploads a snapshot of its index to be used by other nodes in the cluster to replace their indexes.Methods in com.atlassian.confluence.impl.system.task with type parameters of type SystemMaintenanceTask Modifier and Type Method Description <T extends SystemMaintenanceTask>
TJsonSystemMaintenanceTaskMarshalling. unmarshal(Class<T> taskClazz, String taskString)
<T extends SystemMaintenanceTask>
TSystemMaintenanceTaskMarshalling. unmarshal(Class<T> taskClazz, String taskString)
Convert a string representation of aSystemMaintenanceTask
to a POJOMethods in com.atlassian.confluence.impl.system.task that return types with arguments of type SystemMaintenanceTask Modifier and Type Method Description Class<? extends SystemMaintenanceTask>
SystemMaintenanceTaskType. getTaskClazz()
Methods in com.atlassian.confluence.impl.system.task with parameters of type SystemMaintenanceTask Modifier and Type Method Description static Optional<SystemMaintenanceTaskType>
SystemMaintenanceTaskType. forTask(SystemMaintenanceTask task)
String
JsonSystemMaintenanceTaskMarshalling. marshal(SystemMaintenanceTask task)
String
SystemMaintenanceTaskMarshalling. marshal(SystemMaintenanceTask task)
Convert aSystemMaintenanceTask
POJO to a string representation
-