io.perfana.event.PerfanaEventBroadcaster Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of perfana-java-client Show documentation
Show all versions of perfana-java-client Show documentation
Perfana java client for integrating performance test tools
package io.perfana.event;
public interface PerfanaEventBroadcaster {
void broadcastBeforeTest(String testId, PerfanaEventProperties eventProperties);
void broadcastAfterTest(String testId, PerfanaEventProperties eventProperties);
void broadCastKeepAlive(String testd, PerfanaEventProperties eventProperties);
void broadcastCustomEvent(String testd, PerfanaEventProperties eventProperties, ScheduleEvent event);
}