retry

package
v1.3.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 13, 2026 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Overview

Package retry provides the bounded reconnect policy shared by long-lived vessel links. Equal jitter prevents several routes from hammering the same endpoint in lockstep after a long outage while retaining a deterministic upper bound on network and wake-up frequency.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Sleep

func Sleep(ctx context.Context, delay time.Duration) bool

Types

type Backoff

type Backoff struct {
	// contains filtered or unexported fields
}

func NewBackoff

func NewBackoff(base, max time.Duration) *Backoff

func (*Backoff) Next

func (b *Backoff) Next() time.Duration

Next returns equal-jitter delay in [current/2, current], then doubles the next ceiling up to max. A Backoff is owned by one retry loop; it is not intended for concurrent use.

func (*Backoff) Reset

func (b *Backoff) Reset()

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL