-
Notifications
You must be signed in to change notification settings - Fork 177
Open
Labels
Description
I would like to handle method names which are not in a form "Service.Method", whch seems currently imposible.
One way to handle this would be to have *(Server) RegisterFunc method accepting function and string with a method name as parameters.
Example usage:
func HeartBeat(r *http.Request, args *HeartBeatArgs, reply *HeartBeatReply) error {
reply.TimeStamp = time.Now().UnixNano()
}
s := rpc.NewServer()
s.RegisterService(heartBeat, "heartBeat")
That way any call with method "heartBeat" should be directed to function HeartBeat.
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
No status