Method: Redis::Commands::Streams#xack
- Defined in:
- lib/redis/commands/streams.rb
#xack(key, group, *ids) ⇒ Integer
Removes one or multiple entries from the pending entries list of a stream consumer group.
273 274 275 276 |
# File 'lib/redis/commands/streams.rb', line 273 def xack(key, group, *ids) args = [:xack, key, group].concat(ids.flatten) send_command(args) end |