(ctx context.Context, stream string, mode string, ids ...string)
| 187 | } |
| 188 | |
| 189 | func (c cmdable) XDelEx(ctx context.Context, stream string, mode string, ids ...string) *SliceCmd { |
| 190 | args := []interface{}{"xdelex", stream, mode, "ids", len(ids)} |
| 191 | for _, id := range ids { |
| 192 | args = append(args, id) |
| 193 | } |
| 194 | cmd := NewSliceCmd(ctx, args...) |
| 195 | _ = c(ctx, cmd) |
| 196 | return cmd |
| 197 | } |
| 198 | |
| 199 | func (c cmdable) XLen(ctx context.Context, stream string) *IntCmd { |
| 200 | cmd := NewIntCmd(ctx, "xlen", stream) |
nothing calls this directly
no test coverage detected