junxie
Results
1
comments of
junxie
``` //registerCall:将参数 call 添加到 client.pending 中,并更新 client.seq func (c *Client) registerCall(call *Call) (uint64, error) { // todo client前面被锁住了,这里为什么还需要再锁一次呢? c.mu.Lock() defer c.mu.Unlock() if c.closing || c.shutdown { return 0, ErrShutDown }...