27 lines
937 B
Go
27 lines
937 B
Go
package rpc
|
|
|
|
import (
|
|
"git.loafle.net/commons_go/rpc/protocol"
|
|
cuc "git.loafle.net/commons_go/util/context"
|
|
)
|
|
|
|
type ServletHandler interface {
|
|
ServletContext(parent cuc.Context) ServletContext
|
|
|
|
Init(servletCTX ServletContext) error
|
|
|
|
GetRequest(servletCTX ServletContext, codec protocol.ServerCodec, conn interface{}) (protocol.ServerRequestCodec, error)
|
|
Invoke(servletCTX ServletContext, requestCodec protocol.RegistryCodec) (result interface{}, err error)
|
|
SendResponse(servletCTX ServletContext, conn interface{}, requestCodec protocol.ServerRequestCodec, result interface{}, err error) error
|
|
SendNotification(servletCTX ServletContext, conn interface{}, codec protocol.ServerCodec, method string, args ...interface{}) error
|
|
|
|
Destroy(servletCTX ServletContext)
|
|
|
|
RegisterCodec(contentType string, codec protocol.ServerCodec)
|
|
|
|
getCodec(contentType string) (protocol.ServerCodec, error)
|
|
|
|
GetPendingMessages() int
|
|
Validate()
|
|
}
|