package org.radargun.reporting; import java.util.Collection; import org.radargun.config.MasterConfig; /** * @author Radim Vansa <rvansa@redhat.com> * * It is expected that the implementation of this class will use @Property annotations to fill in the properties. */ public interface Reporter { void run(MasterConfig masterConfig, Collection<Report> reports); }