com.testvagrant.monitor.services.ScenariosService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optimusmonitor Show documentation
Show all versions of optimusmonitor Show documentation
The Java Client provides access to Optimus cloud for all java based projects.
The newest version!
package com.testvagrant.monitor.services;
import com.testvagrant.monitor.entities.ScenarioTimeline;
import com.testvagrant.monitor.entities.SmartBOT;
import com.testvagrant.monitor.entities.reportParser.ExecutedScenario;
import java.util.List;
public interface ScenariosService {
void notifyBOTRegistration(SmartBOT smartBOT);
void notifyScenarioCompletion(SmartBOT smartBOT);
String getLatestRecordFor(ExecutedScenario scenario);
void updateExecutionDetailsFor(List scenarios);
void updateScenarioTimeLine(SmartBOT smartBOT, List scenarioTimelines);
void updateCrashes(SmartBOT bot, String exceptions, String activity);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy