Uses of Class
de.iip_ecosphere.platform.support.TaskRegistry.TaskData
Packages that use TaskRegistry.TaskData
-
Uses of TaskRegistry.TaskData in de.iip_ecosphere.platform.support
Fields in de.iip_ecosphere.platform.support declared as TaskRegistry.TaskDataFields in de.iip_ecosphere.platform.support with type parameters of type TaskRegistry.TaskDataModifier and TypeFieldDescriptionprivate static Map<String, TaskRegistry.TaskData> TaskRegistry.idToDataprivate static Map<Long, TaskRegistry.TaskData> TaskRegistry.threadToDataMethods in de.iip_ecosphere.platform.support that return TaskRegistry.TaskDataModifier and TypeMethodDescriptionstatic TaskRegistry.TaskDataTaskRegistry.getTaskData()Returns the task data assigned to the current thread.static TaskRegistry.TaskDataTaskRegistry.getTaskData(String id) Returns the task data assigned to the given task id.static TaskRegistry.TaskDataTaskRegistry.getTaskData(Thread thread) Returns the task data assigned to the given thread.static TaskRegistry.TaskDataTaskRegistry.registerTask()Registers a new task on the current task.static TaskRegistry.TaskDataTaskRegistry.registerTask(String taskId) Registers a new task on the current task.static TaskRegistry.TaskDataTaskRegistry.registerTask(Thread thread) Registers a new task for the giventhread, turning a still running one intoTaskRegistry.TaskStatus.SUPPRESSED.static TaskRegistry.TaskDataTaskRegistry.registerTask(Thread thread, String taskId) Registers a new task for the giventhread, turning a still running one intoTaskRegistry.TaskStatus.SUPPRESSED.private TaskRegistry.TaskDataTaskRegistry.TaskData.setStatus(TaskRegistry.TaskStatus status) Changes the task status and the timestamp of change.Methods in de.iip_ecosphere.platform.support with parameters of type TaskRegistry.TaskDataModifier and TypeMethodDescriptionstatic voidTaskRegistry.associateTask(Thread thread, TaskRegistry.TaskData data) Associates existing taskdatawiththread.booleanTaskRegistry.TaskData.sameTask(TaskRegistry.TaskData data) Returns whether the given taskdatais the same regarding the task id modulo beginning/trailing quotes asgetId().Method parameters in de.iip_ecosphere.platform.support with type arguments of type TaskRegistry.TaskDataModifier and TypeMethodDescriptionprivate static voidTaskRegistry.cleanup(long now, Iterator<TaskRegistry.TaskData> iter) Checks the task data initerfor cleanup.