Method: Redis::Distributed#bzpopmax
- Defined in:
- lib/redis/distributed.rb
#bzpopmax(*args) ⇒ Object
489 490 491 492 493 |
# File 'lib/redis/distributed.rb', line 489 def bzpopmax(*args) _bpop(:bzpopmax, args) do |reply| reply.is_a?(Array) ? [reply[0], reply[1], Floatify.call(reply[2])] : reply end end |