Documentation ¶
Overview ¶
Package conn provides utilities related to connections.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Dialer ¶
Dialer imitates net.Dial. Dialer is assumed to yield connections that are safe for use by multiple concurrent goroutines.
type Manager ¶
type Manager struct {
// contains filtered or unexported fields
}
Manager manages a net.Conn.
Clients provide a way to create the connection with a Dialer, network, and address. Clients should Take the connection when they want to use it, and Put back whatever error they receive from its use. When a non-nil error is Put, the connection is invalidated, and a new connection is established. Connection failures are retried after an exponential backoff.
func NewManager ¶
NewManager returns a connection manager using the passed Dialer, network, and address. The AfterFunc is used to control exponential backoff and retries. For normal use, pass net.Dial and time.After as the Dialer and AfterFunc respectively. The logger is used to log errors; pass a log.NopLogger if you don't care to receive them.