mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
10 lines
262 B
Go
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
|
|
}
|