| 30 | ) |
| 31 | |
| 32 | type rpcClient struct { |
| 33 | seq uint64 |
| 34 | opts Options |
| 35 | once atomic.Value |
| 36 | pool pool.Pool |
| 37 | mu sync.RWMutex |
| 38 | } |
| 39 | |
| 40 | func newRPCClient(opt ...Option) Client { |
| 41 | opts := NewOptions(opt...) |
nothing calls this directly
no outgoing calls
no test coverage detected