13 lines
175 B
Go
13 lines
175 B
Go
|
package notify
|
||
|
|
||
|
import (
|
||
|
"git.loafle.net/commons_go/rpc/protocol"
|
||
|
)
|
||
|
|
||
|
type NotifyHandler interface {
|
||
|
GetCodec() protocol.ClientCodec
|
||
|
GetPendingNotifies() int
|
||
|
|
||
|
Validate()
|
||
|
}
|