Uses of Enum Class
app.nzyme.plugin.distributed.tasksqueue.TaskType
Packages that use TaskType
-
Uses of TaskType in app.nzyme.plugin.distributed.tasksqueue
Methods in app.nzyme.plugin.distributed.tasksqueue that return TaskTypeModifier and TypeMethodDescriptionabstract TaskTypeReceivedTask.type()abstract TaskTypeStoredTask.type()abstract TaskTypeTask.type()static TaskTypeReturns the enum constant of this class with the specified name.static TaskType[]TaskType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in app.nzyme.plugin.distributed.tasksqueue with parameters of type TaskTypeModifier and TypeMethodDescriptionstatic ReceivedTaskReceivedTask.create(TaskType type, UUID senderNodeId, boolean allowProcessSelf, Map<String, Object> parametersMap, String parametersString, boolean allowRetry) static StoredTaskStoredTask.create(Long id, UUID sender, TaskType type, Boolean allowRetry, Map<String, Object> parameters, org.joda.time.DateTime createdAt, TaskStatus status, Integer retries, boolean allowProcessSelf, TaskStatus previousStatus, Integer processingTimeMs, org.joda.time.DateTime firstProcessedAt, org.joda.time.DateTime lastProcessedAt, UUID processedBy) static TaskTask.create(TaskType type, boolean allowProcessSelf, Map<String, Object> parameters, boolean allowRetry) voidTasksQueue.onMessageReceived(TaskType type, TaskHandler taskHandler) abstract ReceivedTask.Builderabstract StoredTask.Builderabstract Task.Builder