# Functions
BackoffUntil loops until stop channel is closed, run f every duration given by BackoffManager.
ForWithContext continually checks 'fn' as driven by 'wait'.
Jitter returns a time.Duration between duration and duration + maxFactor * duration.
JitterUntil loops until stop channel is closed, running f every period.
PollImmediateUntil tries a condition func until it returns true, an error or stopCh is closed.
PollImmediateUntilWithContext tries a condition func until it returns true, an error or the specified context is cancelled or expired.
Until loops until stop channel is closed, running f every period.
# Variables
ErrWaitTimeout is returned when the condition exited without success.
# Type aliases
ConditionFunc returns true if the condition is satisfied, or an error if the loop should be aborted.
ConditionWithContextFunc returns true if the condition is satisfied, or an error if the loop should be aborted.
WithContextFunc creates a channel that receives an item every time a test should be executed and is closed when the last test should be invoked.