mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 18:06:15 -05:00
11 lines
192 B
Go
11 lines
192 B
Go
|
package drain
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
|
||
|
|
||
|
type Drainer interface {
|
||
|
AcknowledgeReceive(size int)
|
||
|
Drain(reader io.Reader) error
|
||
|
}
|