(serviceMethod string, args interface{}, reply interface{}, done chan *rpc.Call)
| 27 | type Client interface { |
| 28 | Call(serviceMethod string, args interface{}, reply interface{}) error |
| 29 | Go(serviceMethod string, args interface{}, reply interface{}, done chan *rpc.Call) *rpc.Call |
| 30 | Close() error |
| 31 | } |
| 32 |