
com.wavefront.agent.data.TaskResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy Show documentation
Show all versions of proxy Show documentation
Service for batching and relaying metric traffic to Wavefront
package com.wavefront.agent.data;
/**
* Possible outcomes of {@link DataSubmissionTask} execution
*
* @author [email protected]
*/
public enum TaskResult {
DELIVERED, // success
REMOVED, // data is removed from queue, due to feature disabled or auth error
PERSISTED, // data is persisted in the queue, start back-off process
PERSISTED_RETRY, // data is persisted in the queue, ok to continue processing backlog
RETRY_LATER // data needs to be returned to the pool and retried later
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy