Home | History | Annotate | Download | only in rpc

Lines Matching full:replytype

24 		func (t *T) MethodName(argType T1, replyType *T2) error
154 ReplyType reflect.Type
314 replyType := mtype.In(2)
315 if replyType.Kind() != reflect.Ptr {
317 log.Println("method", mname, "reply type not a pointer:", replyType)
322 if !isExportedOrBuiltinType(replyType) {
324 log.Println("method", mname, "reply type not exported:", replyType)
342 methods[mname] = &methodType{method: method, ArgType: argType, ReplyType: replyType}
569 replyv = reflect.New(mtype.ReplyType.Elem())