public interface TestExecutionServiceAsync extends TestExecutionService
| Modifier and Type | Method and Description |
|---|---|
java.util.concurrent.Future<TestLog> |
getLastLogAsync(GetLastLogRequest getLastLogRequest)
Gets test run information.
|
java.util.concurrent.Future<TestLog> |
getLastLogAsync(GetLastLogRequest getLastLogRequest,
AsyncHandler<GetLastLogRequest,TestLog> asyncHandler)
Gets test run information.
|
java.util.concurrent.Future<TestRun> |
getTestRunAsync(GetTestRunRequest getTestRunRequest)
Gets test run information.
|
java.util.concurrent.Future<TestRun> |
getTestRunAsync(GetTestRunRequest getTestRunRequest,
AsyncHandler<GetTestRunRequest,TestRun> asyncHandler)
Gets test run information.
|
java.util.concurrent.Future<java.util.List<ExecutionStatus>> |
listExecutionStatusAsync(ListExecutionStatusRequest executionStatusRequest)
List all execution status request from test execution service.
|
java.util.concurrent.Future<java.util.List<ExecutionStatus>> |
listExecutionStatusAsync(ListExecutionStatusRequest executionStatusRequest,
AsyncHandler<ListExecutionStatusRequest,java.util.List<ExecutionStatus>> asyncHandler)
List all execution status request from test execution service.
|
java.util.concurrent.Future<java.util.List<TestRun>> |
listTestRunAsync(ListTestRunRequest testRunRequest)
Lists all test runs from the given
list test run request. |
java.util.concurrent.Future<java.util.List<TestRun>> |
listTestRunAsync(ListTestRunRequest testRunRequest,
AsyncHandler<ListTestRunRequest,java.util.List<TestRun>> asyncHandler)
Lists all test runs from the given
list test run request. |
java.util.concurrent.Future<java.util.List<TestSuite>> |
listTestSuiteAsync(ListTestSuiteRequest testSuiteRequest)
Lists all test suites from the given
list test suite request. |
java.util.concurrent.Future<java.util.List<TestSuite>> |
listTestSuiteAsync(ListTestSuiteRequest testSuiteRequest,
AsyncHandler<ListTestSuiteRequest,java.util.List<TestSuite>> asyncHandler)
Lists all test suites from the given
list test suite request. |
java.util.concurrent.Future<TestLog> |
submitAutomationTestLogAsync(AutomationTestLogRequest automationTestLogRequest)
Submits automation test log to test execution service.
|
java.util.concurrent.Future<TestLog> |
submitAutomationTestLogAsync(AutomationTestLogRequest automationTestLogRequest,
AsyncHandler<AutomationTestLogRequest,TestLog> asyncHandler)
Submits automation test log to test execution service.
|
java.util.concurrent.Future<TestLog> |
submitTestLogAsync(SubmitTestLogRequest submitTestLogRequest)
Submits test log to test execution service.
|
java.util.concurrent.Future<TestLog> |
submitTestLogAsync(SubmitTestLogRequest submitTestLogRequest,
AsyncHandler<SubmitTestLogRequest,TestLog> asyncHandler)
Submits test log to test execution service.
|
createTestCycle, createTestRun, createTestSuite, deleteTestCycle, deleteTestRun, deleteTestSuite, getLastLog, getQueueProcessingResponse, getTestCycle, getTestRun, getTestSuite, listExecutionStatus, listTestCycle, listTestRun, listTestSuite, moveTestCycle, moveTestRun, moveTestSuite, submitAutomationTestLog, submitAutomationTestLogs, submitAutomationTestLogsExtended, submitTestLog, updateTestCycle, updateTestRun, updateTestSuitesetEndpoint, shutdownjava.util.concurrent.Future<TestLog> submitAutomationTestLogAsync(AutomationTestLogRequest automationTestLogRequest) throws AuthServiceException
automationTestLogRequest - the given automation test log request.TestLog instance.AuthServiceException - if an error occurs during submitting automation
test log to test execution service.java.util.concurrent.Future<TestLog> submitAutomationTestLogAsync(AutomationTestLogRequest automationTestLogRequest, AsyncHandler<AutomationTestLogRequest,TestLog> asyncHandler) throws AuthServiceException
automationTestLogRequest - the given automation test log request.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.TestLog instance.AuthServiceException - if an error occurs during submitting automation
test log to test execution service.java.util.concurrent.Future<TestLog> submitTestLogAsync(SubmitTestLogRequest submitTestLogRequest) throws AuthServiceException
submitTestLogRequest - the given test log request.TestLog instance.AuthServiceException - if an error occurs during submitting automation
test log to test execution service.java.util.concurrent.Future<TestLog> submitTestLogAsync(SubmitTestLogRequest submitTestLogRequest, AsyncHandler<SubmitTestLogRequest,TestLog> asyncHandler) throws AuthServiceException
submitTestLogRequest - the given test log request.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.TestLog instance.AuthServiceException - if an error occurs during submitting automation
test log to test execution service.java.util.concurrent.Future<TestLog> getLastLogAsync(GetLastLogRequest getLastLogRequest) throws AuthServiceException
getLastLogRequest - the given GetLastLogRequest instance.TestLog instance.AuthServiceException - if an error occurs during getting test-run information.java.util.concurrent.Future<TestLog> getLastLogAsync(GetLastLogRequest getLastLogRequest, AsyncHandler<GetLastLogRequest,TestLog> asyncHandler) throws AuthServiceException
getLastLogRequest - the given GetLastLogRequest instance.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.TestLog instance.AuthServiceException - if an error occurs during getting test-run information.java.util.concurrent.Future<java.util.List<ExecutionStatus>> listExecutionStatusAsync(ListExecutionStatusRequest executionStatusRequest) throws AuthServiceException
executionStatusRequest - the given ListExecutionStatusRequest object.execution status instance.AuthServiceException - if an error occurs during listing all execution statuses.java.util.concurrent.Future<java.util.List<ExecutionStatus>> listExecutionStatusAsync(ListExecutionStatusRequest executionStatusRequest, AsyncHandler<ListExecutionStatusRequest,java.util.List<ExecutionStatus>> asyncHandler) throws AuthServiceException
executionStatusRequest - the given ListExecutionStatusRequest object.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.execution status instance.AuthServiceException - if an error occurs during listing all execution statuses.java.util.concurrent.Future<java.util.List<TestRun>> listTestRunAsync(ListTestRunRequest testRunRequest) throws AuthServiceException
list test run request.testRunRequest - the given list test run request object.test run objects.AuthServiceException - if an error occurs during listing all test run.java.util.concurrent.Future<java.util.List<TestRun>> listTestRunAsync(ListTestRunRequest testRunRequest, AsyncHandler<ListTestRunRequest,java.util.List<TestRun>> asyncHandler) throws AuthServiceException
list test run request.testRunRequest - the given list test run request object.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.test run objects.AuthServiceException - if an error occurs during listing all test run.java.util.concurrent.Future<TestRun> getTestRunAsync(GetTestRunRequest getTestRunRequest) throws AuthServiceException
getTestRunRequest - the given GetTestRunRequest instance.TestRun instance.AuthServiceException - if an error occurs during getting test-run information.java.util.concurrent.Future<TestRun> getTestRunAsync(GetTestRunRequest getTestRunRequest, AsyncHandler<GetTestRunRequest,TestRun> asyncHandler) throws AuthServiceException
getTestRunRequest - the given GetTestRunRequest instance.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.TestRun instance.AuthServiceException - if an error occurs during getting test-run information.java.util.concurrent.Future<java.util.List<TestSuite>> listTestSuiteAsync(ListTestSuiteRequest testSuiteRequest) throws AuthServiceException
list test suite request.testSuiteRequest - the given list test suite request object.test suite objects.AuthServiceException - if an error occurs during listing all test suites.java.util.concurrent.Future<java.util.List<TestSuite>> listTestSuiteAsync(ListTestSuiteRequest testSuiteRequest, AsyncHandler<ListTestSuiteRequest,java.util.List<TestSuite>> asyncHandler) throws AuthServiceException
list test suite request.testSuiteRequest - the given list test suite request object.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.test suite objects.AuthServiceException - if an error occurs during listing all test suites.