public interface TestPlanServiceAsync extends TestPlanService
| Modifier and Type | Method and Description |
|---|---|
java.util.concurrent.Future<Build> |
createBuildAsync(CreateBuildRequest createBuildRequest)
Creates build from the
create build request |
java.util.concurrent.Future<Build> |
createBuildAsync(CreateBuildRequest createBuildRequest,
AsyncHandler<CreateBuildRequest,Build> asyncHandler)
Creates build from the
create build request |
java.util.concurrent.Future<Release> |
createReleaseAsync(CreateReleaseRequest createReleaseRequest)
Creates release from the
CreateReleaseRequest . |
java.util.concurrent.Future<Release> |
createReleaseAsync(CreateReleaseRequest createReleaseRequest,
AsyncHandler<CreateReleaseRequest,Release> asyncHandler)
Creates release from the
CreateReleaseRequest . |
createBuild, createReleasesetEndpoint, shutdownjava.util.concurrent.Future<Release> createReleaseAsync(CreateReleaseRequest createReleaseRequest) throws AuthServiceException
CreateReleaseRequest .createReleaseRequest - the given create release requestRelease instance.AuthServiceException - if an error occurs during creating release.java.util.concurrent.Future<Release> createReleaseAsync(CreateReleaseRequest createReleaseRequest, AsyncHandler<CreateReleaseRequest,Release> asyncHandler) throws AuthServiceException
CreateReleaseRequest .createReleaseRequest - the given create release requestasyncHandler - 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.Release instance.AuthServiceException - if an error occurs during creating release.java.util.concurrent.Future<Build> createBuildAsync(CreateBuildRequest createBuildRequest) throws AuthServiceException
create build requestcreateBuildRequest - the given create build requestBuild instance.AuthServiceException - if an error occurs during creating build.java.util.concurrent.Future<Build> createBuildAsync(CreateBuildRequest createBuildRequest, AsyncHandler<CreateBuildRequest,Build> asyncHandler) throws AuthServiceException
create build requestcreateBuildRequest - the given create build requestasyncHandler - 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.Build instance.AuthServiceException - if an error occurs during creating build.