Wrote pool config and tests.

This commit is contained in:
Jay
2026-04-15 20:56:22 -04:00
parent f45dc83179
commit 6d61fcd7e7
4 changed files with 401 additions and 107 deletions

View File

@@ -8,8 +8,8 @@ var (
InvalidProtocol = errors.New("URL must use ws:// or wss:// scheme")
// Configuration Errors
InvalidReadTimeout = errors.New("read timeout must be positive")
InvalidWriteTimeout = errors.New("write timeout must be positive")
InvalidIdleTimeout = errors.New("idle timeout cannot be negative")
InvalidWriteTimeout = errors.New("write timeout cannot be negative")
InvalidRetryMaxRetries = errors.New("max retry count cannot be negative")
InvalidRetryInitialDelay = errors.New("initial delay must be positive")
InvalidRetryMaxDelay = errors.New("max delay must be positive")