本文整理汇总了Golang中net/rpc.ServerCodec.ReadRequestBody方法的典型用法代码示例。如果您正苦于以下问题:Golang ServerCodec.ReadRequestBody方法的具体用法?Golang ServerCodec.ReadRequestBody怎么用?Golang ServerCodec.ReadRequestBody使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net/rpc.ServerCodec
的用法示例。
在下文中一共展示了ServerCodec.ReadRequestBody方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: readRequest
// readRequest reads a single request from a connection.
func (s *Server) readRequest(codec rpc.ServerCodec, authHook func(proto.Message, bool) error) (rpc.Request, method, proto.Message, error) {
var req rpc.Request
if err := codec.ReadRequestHeader(&req); err != nil {
return req, method{}, nil, err
}
s.mu.RLock()
m, ok := s.methods[req.ServiceMethod]
s.mu.RUnlock()
// If we found the method, construct a request protobuf, parse into
// it, and authenticate it.
if ok {
args := reflect.New(m.reqType.Elem()).Interface().(proto.Message)
if err := codec.ReadRequestBody(args); err != nil {
return req, m, args, err
}
return req, m, args, authHook(args, m.public)
}
// If not, consume and discard the input by passing nil to ReadRequestBody.
return req, m, nil, codec.ReadRequestBody(nil)
}
示例2: readRequest
// readRequest reads a single request from a connection.
func (s *Server) readRequest(codec rpc.ServerCodec, authHook func(proto.Message, bool) error) (
req rpc.Request, m method, args proto.Message, err error) {
if err = codec.ReadRequestHeader(&req); err != nil {
return
}
s.mu.RLock()
var ok bool
m, ok = s.methods[req.ServiceMethod]
s.mu.RUnlock()
// If we found the method, construct a request protobuf and parse into it.
// If not, consume and discard the input by passing nil to ReadRequestBody.
if ok {
args = reflect.New(m.reqType.Elem()).Interface().(proto.Message)
}
if err = codec.ReadRequestBody(args); err != nil {
return
}
if args == nil {
return
}
err = authHook(args, m.public)
return
}