defaultSessionIoDelay function

Future<void> defaultSessionIoDelay(
  1. Duration delay
)

The wall-clock sleep between retries. Injectable so tests observe the backoff schedule without waiting for it.

Implementation

Future<void> defaultSessionIoDelay(Duration delay) =>
    Future<void>.delayed(delay);