Source File
options.go
Belonging Package
github.com/gotd/td/internal/pool
package poolimport// DCOptions is a Telegram data center connections pool options.type DCOptions struct {// Logger is instance of zap.Logger. No logs by default.Logger *zap.Logger// MTProto options for connections.// Opened connection limit to the DC.MaxOpenConnections int64}func ( *DCOptions) () {if .Logger == nil {.Logger = zap.NewNop()}// It's okay to use zero value for MaxOpenConnections.}
![]() |
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. |