Uses of Class
org.opends.server.backends.task.Task
-
Packages that use Task Package Description org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.backends.task Contains the code for the Directory Server backend that provides an interface for executing administrative tasks.org.opends.server.replication.plugin This package contains the part of the Multi-master replication code that works on the Directory Server side.org.opends.server.replication.service This package contains the generic of the Multi-Master replication code that works on the Directory Server side.org.opends.server.tasks Contains implementations for various Directory Server tasks.org.opends.server.tools Contains various Directory Server tool implementations. -
-
Uses of Task in org.opends.server.api
Methods in org.opends.server.api that return Task Modifier and Type Method Description Task
DirectoryThread. getAssociatedTask()
Retrieves the task with which this thread is associated.Methods in org.opends.server.api with parameters of type Task Modifier and Type Method Description protected void
DirectoryThread. setAssociatedTask(Task task)
Sets the task with which this thread is associated. -
Uses of Task in org.opends.server.backends.task
Methods in org.opends.server.backends.task that return Task Modifier and Type Method Description Task
TaskScheduler. entryToScheduledTask(Entry entry, Operation operation)
Decodes the contents of the provided entry as a scheduled task.Task
TaskBackend. getScheduledTask(Dn taskEntryDN)
Retrieves the scheduled task for the entry with the provided DN.Task
TaskScheduler. getScheduledTask(Dn taskEntryDN)
Retrieves the scheduled task created from the specified entry.Task
RecurringTask. scheduleNextIteration(Instant dateAndTimeToSchedule)
Schedules the next iteration of this recurring task for processing.Methods in org.opends.server.backends.task with parameters of type Task Modifier and Type Method Description int
Task. compareTo(Task task)
Compares this task with the provided task for the purposes of ordering in a sorted list.protected void
TaskScheduler. scheduleNextRecurringTaskIteration(Task completedTask, Instant dateAndTimeToSchedule)
Check if a given task is a recurring task iteration and re-schedule it.void
TaskScheduler. scheduleTask(Task task)
Schedules the provided task for execution.boolean
TaskScheduler. threadDone(org.opends.server.backends.task.TaskThread taskThread, Task completedTask, TaskState taskState)
Indicates that processing has completed on the provided task thread and that it is now available for processing other tasks. -
Uses of Task in org.opends.server.replication.plugin
Methods in org.opends.server.replication.plugin with parameters of type Task Modifier and Type Method Description protected void
LDAPReplicationDomain. initializeRemote(ReplicaId target, ReplicaId requestorID, Task initTask, int initWindow)
Process the initialization of some other server or servers in the topology specified by the target argument when this initialization specifying the server that requests the initialization. -
Uses of Task in org.opends.server.replication.service
Methods in org.opends.server.replication.service with parameters of type Task Modifier and Type Method Description void
ReplicationDomain. initializeFromRemote(ReplicaId source, Task initTask)
Initializes asynchronously this domain from a remote source server.void
ReplicationDomain. initializeRemote(ReplicaId target, Task initTask)
Initializes a remote server from this server.protected void
ReplicationDomain. initializeRemote(ReplicaId replicaToInitialize, ReplicaId replicaRunningTheTask, Task initTask, int initWindow)
Process the initialization of some other server or servers in the topology specified by the target argument when this initialization specifying the server that requests the initialization. -
Uses of Task in org.opends.server.tasks
Subclasses of Task in org.opends.server.tasks Modifier and Type Class Description class
AddSchemaFileTask
This class provides an implementation of a Directory Server task that can be used to add the contents of a new schema file into the server schema.class
BackupPurgeTask
This class provides an implementation of a Directory Server task that may be used to purge backups of a Directory Server.class
BackupTask
This class provides an implementation of a Directory Server task that may be used to back up a Directory Server backend in a binary form.class
DisconnectClientTask
This class provides an implementation of a Directory Server task that can be used to terminate a client connection.class
EnterLockdownModeTask
This class provides an implementation of a Directory Server task that can be used to place the server in lockdown mode.class
ExportTask
This class provides an implementation of a Directory Server task that can be used to export the contents of a Directory Server backend to an LDIF file.class
ImportTask
This class provides an implementation of a Directory Server task that can be used to import data from an LDIF file into a backend.class
InitializeTargetTask
This class provides an implementation of a Directory Server task that can be used to initialize another server by exporting data over the replication protocol.class
InitializeTask
This class provides an implementation of a Directory Server task that can be used to import data over the replication protocol from another server hosting the same replication domain.class
LeaveLockdownModeTask
This class provides an implementation of a Directory Server task that can be used bring the server out of lockdown mode.class
PurgeConflictsHistoricalTask
This class provides an implementation of a Directory Server task that can be used to purge the replication historical informations stored in the user entries to solve conflicts.class
RebuildTask
This class provides an implementation of a Directory Server task that can be used to rebuild indexes in a backend.class
ResetChangeNumberTask
This class provides an implementation of a Directory Server task that can be used to rebuild the change number index with a given change number and a change represented by its CSN.class
RestoreTask
This class provides an implementation of a Directory Server task that can be used to restore a binary backup of a Directory Server backend.class
SetGenerationIdTask
This class provides an implementation of a Directory Server task that can be used to import data over the replication protocol from another server hosting the same replication domain.class
ShutdownTask
This class provides an implementation of a Directory Server task that can be used to stop the server. -
Uses of Task in org.opends.server.tools
Methods in org.opends.server.tools that return types with arguments of type Task Modifier and Type Method Description Class<? extends Task>
ExportLdif. getTaskClass()
Class<? extends Task>
ImportLdif. getTaskClass()
Class<? extends Task>
RebuildIndex. getTaskClass()
Class<? extends Task>
TaskCommand. getTaskClass()
Returns the task class.
-