Options retrives the options.
()
| 380 | |
| 381 | // Options retrives the options. |
| 382 | func (r *rpcClient) Options() Options { |
| 383 | r.mu.RLock() |
| 384 | defer r.mu.RUnlock() |
| 385 | |
| 386 | return r.opts |
| 387 | } |
| 388 | |
| 389 | // next returns an iterator for the next nodes to call. |
| 390 | func (r *rpcClient) next(request Request, opts CallOptions) (selector.Next, error) { |