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

io.perfana.event.PerfanaTestEventAdapter Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
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) {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy