rpc/notify/notify_handler.go

13 lines
175 B
Go
Raw Normal View History

2017-11-22 11:55:10 +00:00
package notify
import (
"git.loafle.net/commons_go/rpc/protocol"
)
type NotifyHandler interface {
GetCodec() protocol.ClientCodec
GetPendingNotifies() int
Validate()
}