Class RebuildTask

java.lang.Object
org.opends.server.backends.task.Task
org.opends.server.tasks.RebuildTask
All Implemented Interfaces:
Comparable<Task>

public final class RebuildTask extends Task
This class provides an implementation of a Directory Server task that can be used to rebuild indexes in a backend.
  • Field Details

    • OC_TASK_REBUILD_INDEX

      public static final String OC_TASK_REBUILD_INDEX
      Name of the object class associated to the rebuild index task.
      See Also:
  • Constructor Details

    • RebuildTask

      public RebuildTask()
  • Method Details

    • getDisplayName

      public LocalizableMessage getDisplayName()
      Description copied from class: Task
      Gets a message that identifies this type of task suitable for presentation to humans in monitoring tools.
      Overrides:
      getDisplayName in class Task
      Returns:
      name of task
    • initializeTask

      public void initializeTask(Entry taskEntry) throws LdapException
      Description copied from class: Task
      Performs any task-specific initialization that may be required before processing can start. This default implementation does not do anything, but subclasses may override it as necessary. This method will be called at the time the task is scheduled, and therefore any failure in this method will be returned to the client.
      Overrides:
      initializeTask in class Task
      Parameters:
      taskEntry - the task entry
      Throws:
      LdapException - If a problem occurs during initialization that should be returned to the client.
    • runTask

      protected TaskState runTask()
      Description copied from class: Task
      Performs the actual core processing for this task. This method should not return until all processing associated with this task has completed.
      Specified by:
      runTask in class Task
      Returns:
      The final state to use for the task.