(ctx context.Context, cmds []Cmder)
| 1127 | } |
| 1128 | |
| 1129 | func (c *baseClient) processTxPipeline(ctx context.Context, cmds []Cmder) error { |
| 1130 | if err := c.generalProcessPipeline(ctx, cmds, c.txPipelineProcessCmds, "MULTI"); err != nil { |
| 1131 | return err |
| 1132 | } |
| 1133 | return cmdsFirstErr(cmds) |
| 1134 | } |
| 1135 | |
| 1136 | type pipelineProcessor func(context.Context, *pool.Conn, []Cmder) (bool, error) |
| 1137 |
nothing calls this directly
no test coverage detected