Interface TestEngine
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
EmbeddedTestEngine,HttpTestEngine
Dont forget to use autocloseable resource :
try(testEngine) {
testEngine.execute(executionRequest)
....
}
-
Method Summary
Modifier and TypeMethodDescriptionexecute(ExecutionRequestDto request) executeAsync(ExecutionRequestDto request) voidpauseExecution(Long executionId) io.reactivex.rxjava3.core.Observable<StepExecutionReportDto> receiveNotification(Long executionId) voidresumeExecution(Long executionId) voidstopExecution(Long executionId) Methods inherited from interface java.lang.AutoCloseable
close
-
Method Details
-
execute
-
executeAsync
-
receiveNotification
-
pauseExecution
-
resumeExecution
-
stopExecution
-