1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00
any-sync/net/streampool/streamconfig.go
2024-08-11 17:34:24 +02:00

10 lines
262 B
Go

package streampool
type StreamConfig struct {
// SendQueueSize size of the queue for write per peer
SendQueueSize int
// DialQueueWorkers how many workers will dial to peers
DialQueueWorkers int
// DialQueueSize size of the dial queue
DialQueueSize int
}