go-libp2p-resource-manager/limit.go

8 lines
106 B
Go
Raw Normal View History

2021-12-22 17:39:46 +08:00
package rcmgr
type Limit interface {
GetMemoryLimit() int64
GetStreamLimit() int
GetConnLimit() int
2021-12-22 17:39:46 +08:00
}