io.perfana.event.PerfanaTestEventAdapter 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;
import io.perfana.client.api.PerfanaTestContext;
import java.util.Map;
/**
* Adapter class with empty method implementations of the PerfanaTestEvent interface.
* Extend this class so you only have to implement the methods that are used.
*/
public abstract class PerfanaTestEventAdapter implements PerfanaTestEvent {
@Override
public void beforeTest(PerfanaTestContext context, Map eventProperties) {
}
@Override
public void afterTest(PerfanaTestContext context, Map eventProperties) {
}
@Override
public void keepAlive(PerfanaTestContext context, Map eventProperties) {
}
@Override
public void customEvent(PerfanaTestContext context, Map eventProperties, ScheduleEvent scheduleEvent) {
}
}