rpc/notify/notify_handler.go
crusader 5dafb388b1 ing
2017-11-22 20:55:10 +09:00

13 lines
175 B
Go

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