All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.metricssampler.cmd.TestCommand Maven / Gradle / Ivy

The newest version!
package org.metricssampler.cmd;

import com.beust.jcommander.Parameters;
import org.metricssampler.sampler.Sampler;

@Parameters(commandNames="test", commandDescriptionKey="help.test.command")
public class TestCommand extends SamplersCommand {
	@Override
	protected void process(final Sampler sampler) {
		logger.info("Testing {}", sampler);
		sampler.sample();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy