com.transferwise.tasks.handler.interfaces.StuckDetectionSource 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.handler.interfaces;
public enum StuckDetectionSource {
/**
* We found `PROCESSING` tasks with the same `processing_client_id` as our `node-id` configuration.
*/
SAME_NODE_STARTUP,
/**
* The normal cluster wide stuck tasks detector.
*/
CLUSTER_WIDE_STUCK_TASKS_DETECTOR
}