com.transferwise.tasks.domain.TaskStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tw-tasks-core Show documentation
Show all versions of tw-tasks-core Show documentation
Transferwise Tasks Executor - Fire and forget until Alert.
package com.transferwise.tasks.domain;
public enum TaskStatus {
NEW,
WAITING,
SUBMITTED,
PROCESSING,
DONE,
ERROR, // Generates alerts
FAILED, // ERROR is acked, alerts are off
UNKNOWN // For metrics, if getting task status is too expensive
}