FILE / ScuroNeko/Laniakea

tgapi/errors.go

Исходный файл и его история в репозитории.
FILE daa1b862ed9ddb3a8bf0999e8c6f2ddb3de58f57
Files
Laniakea/tgapi/errors.go
T
ScuroNeko fc4386df75
Golang lint / lint (push) Successful in 1m11s
(new): log formatter options
(refactor): API initialism names

(tests): logger format coverage

(doc): updated public names
2026-04-28 16:18:14 +03:00

13 lines
458 B
Go

package tgapi
import "errors"
// ErrPoolUnexpected reports an unexpected result type returned from the worker pool.
var ErrPoolUnexpected = errors.New("unexpected response from pool")
// ErrPoolQueueFull reports that the internal request queue is full.
var ErrPoolQueueFull = errors.New("worker pool queue full")
// ErrPoolStopped reports that a request was submitted after the worker pool stopped.
var ErrPoolStopped = errors.New("worker pool stopped")