
com.wavefront.agent.ResubmissionTask 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;
import com.squareup.tape.Task;
import com.wavefront.api.AgentAPI;
import java.util.List;
import java.util.UUID;
/**
* A task for resubmission.
*
* @author Clement Pang ([email protected]).
*/
public abstract class ResubmissionTask> implements Task {
/**
* To be injected. Should be null when serialized.
*/
protected AgentAPI service = null;
/**
* To be injected. Should be null when serialized.
*/
protected UUID currentAgentId = null;
public abstract List splitTask();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy