IResourceWithWaitSupport
Interface TypeScript
interface IResourceWithWaitSupport { waitFor(dependency: IResource): IResourceWithWaitSupport; waitForCompletion( dependency: IResource, exitCode?: number): IResourceWithWaitSupport; waitForStart(dependency: IResource): IResourceWithWaitSupport; waitForStartWithBehavior( dependency: IResource, waitBehavior: WaitBehavior): IResourceWithWaitSupport; waitForWithBehavior( dependency: IResource, waitBehavior: WaitBehavior): IResourceWithWaitSupport;} 5 members
Methods
method
waitFor builder Waits for another resource to be ready
waitFor(dependency: IResource): IResourceWithWaitSupportParameters
dependency IResource Returns
IResourceWithWaitSupport method
waitForCompletion builder Waits for resource completion
waitForCompletion( dependency: IResource, exitCode?: number): IResourceWithWaitSupportParameters
dependency IResource exitCode number optional = 0 Returns
IResourceWithWaitSupport method
waitForStart builder Waits for another resource to start
waitForStart(dependency: IResource): IResourceWithWaitSupportParameters
dependency IResource Returns
IResourceWithWaitSupport method
waitForStartWithBehavior builder Waits for another resource to start with specific behavior
waitForStartWithBehavior( dependency: IResource, waitBehavior: WaitBehavior): IResourceWithWaitSupportParameters
dependency IResource waitBehavior WaitBehavior Returns
IResourceWithWaitSupport method
waitForWithBehavior builder Waits for another resource with specific behavior
waitForWithBehavior( dependency: IResource, waitBehavior: WaitBehavior): IResourceWithWaitSupportParameters
dependency IResource waitBehavior WaitBehavior Returns
IResourceWithWaitSupport