io.split.qos.server.integrations.pagerduty.PagerDutyBroadcaster Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qosrunner Show documentation
Show all versions of qosrunner Show documentation
Framework for running JUnit Tests as a Continous Service (QoS)
package io.split.qos.server.integrations.pagerduty;
import io.split.qos.server.integrations.Integration;
import io.split.qos.server.util.TestId;
public interface PagerDutyBroadcaster extends AutoCloseable, Integration {
void initialize(String serviceKey, String qosServerName);
void incident(TestId testId, String details) throws Exception;
void resolve(TestId testId) throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy