brpoplpush method

Future<RespType> brpoplpush(
  1. String source,
  2. String destination,
  3. int timeout
)

Implementation

Future<RespType> brpoplpush(String source, String destination, int timeout) async {
  return tier0.execute([
    'BRPOPLPUSH',
    source,
    destination,
    timeout,
  ]);
}