com.wavefront.agent.InteractiveTester 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.wavefront.agent.config.ConfigurationException;
/**
* Base interface for all interactive testers (logs and preprocessor at the moment).
*
* @author [email protected]
*/
public interface InteractiveTester {
/**
* Read line from stdin and process it.
*
* @return true if there's more input to process
* @throws ConfigurationException
*/
boolean interactiveTest() throws ConfigurationException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy