withPollInterval method

WaitStrategy withPollInterval(
  1. Duration interval
)

Sets the poll interval between readiness checks.

Returns this to allow fluent chaining.

Implementation

WaitStrategy withPollInterval(Duration interval) {
  pollInterval = interval;
  return this;
}