Source File
options.go
Belonging Package
github.com/gotd/td/internal/rpc
package rpc
import (
)
// Options of rpc engine.
type Options struct {
RetryInterval time.Duration
MaxRetries int
Logger *zap.Logger
Clock clock.Clock
DropHandler DropHandler
}
func ( *Options) () {
if .RetryInterval == 0 {
.RetryInterval = time.Second * 10
}
if .MaxRetries == 0 {
.MaxRetries = 5
}
if .Logger == nil {
.Logger = zap.NewNop()
}
if .Clock == nil {
.Clock = clock.System
}
if .DropHandler == nil {
.DropHandler = NopDrop
}
}
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |