mirror of
https://github.com/libp2p/go-libp2p-resource-manager.git
synced 2025-02-05 01:00:19 +08:00
8 lines
106 B
Go
8 lines
106 B
Go
package rcmgr
|
|
|
|
type Limit interface {
|
|
GetMemoryLimit() int64
|
|
GetStreamLimit() int
|
|
GetConnLimit() int
|
|
}
|