waitingFor method

DockerContainer waitingFor(
  1. WaitStrategy strategy
)

Attaches a WaitStrategy that start will invoke after the container is running.

Returns this for chaining.

Implementation

DockerContainer waitingFor(WaitStrategy strategy) {
  _waitStrategy = strategy;
  return this;
}