(ctx context.Context, cmd Cmder)
| 637 | } |
| 638 | |
| 639 | func (c *Ring) Process(ctx context.Context, cmd Cmder) error { |
| 640 | err := c.processHook(ctx, cmd) |
| 641 | cmd.SetErr(err) |
| 642 | return err |
| 643 | } |
| 644 | |
| 645 | // Options returns read-only *RingOptions that were used to create the client. |
| 646 | // Any alteration of the returned *RingOptions may result in undefined behaviour. |
nothing calls this directly
no test coverage detected