Interface BackoffFactory

interface BackoffFactory {
    create(): Backoff;
    createWithLimit(limit: number): Backoff;
}

Implemented by

Methods