14 lines
257 B
Go
14 lines
257 B
Go
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// Copyright © 2023 Thorsten Schubert <tschubert@bafh.org>
|
|
|
|
package retry
|
|
|
|
import "time"
|
|
|
|
type RetryStrategy interface {
|
|
Name() string
|
|
Next() bool
|
|
NextDelay() time.Duration
|
|
Reset()
|
|
Retries() (uint, uint)
|
|
}
|