Interface AbstractContainerTask.WaitForCallback
-
- All Implemented Interfaces:
public interface AbstractContainerTask.WaitForCallbackCallback interface for the
waitFormethod
-
-
Method Summary
Modifier and Type Method Description abstract StringdescribeCondition()Returns a description of the condition to be checked (used for logging) abstract BooleancheckCondition(ContainerHandle containerHandle, Integer retryCnt)Checks the condition and returns trueif the condition is met e.g.abstract DurationgetRetryDelay()Returns the delay between two retries -
-
Method Detail
-
describeCondition
abstract String describeCondition()
Returns a description of the condition to be checked (used for logging)
-
checkCondition
abstract Boolean checkCondition(ContainerHandle containerHandle, Integer retryCnt)
Checks the condition and returns
trueif the condition is met e.g. the container is running
-
getRetryDelay
abstract Duration getRetryDelay()
Returns the delay between two retries
-
-
-
-