io.vertx.redis.RedisClient.lpop()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(170)

本文整理了Java中io.vertx.redis.RedisClient.lpop方法的一些代码示例,展示了RedisClient.lpop的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。RedisClient.lpop方法的具体详情如下:
包路径:io.vertx.redis.RedisClient
类名称:RedisClient
方法名:lpop

RedisClient.lpop介绍

[英]Remove and get the first element in a list
[中]删除并获取列表中的第一个元素

代码示例

代码示例来源:origin: io.vertx/vertx-rx-java

/**
 * Remove and get the first element in a list
 * @param key String key
 * @param handler Handler for the result of this call.
 * @return 
 */
public io.vertx.rxjava.redis.RedisClient lpop(String key, Handler<AsyncResult<String>> handler) { 
 delegate.lpop(key, handler);
 return this;
}

代码示例来源:origin: vert-x3/vertx-rx

/**
 * Remove and get the first element in a list
 * @param key String key
 * @param handler Handler for the result of this call.
 * @return 
 */
public io.vertx.rxjava.redis.RedisClient lpop(String key, Handler<AsyncResult<String>> handler) { 
 delegate.lpop(key, handler);
 return this;
}

代码示例来源:origin: org.swisspush.gateleen/gateleen-queue

@Override
public Future<String> popQueueToUnlock() {
  Future<String> future = Future.future();
  redisClient.lpop(STORAGE_QUEUES_TO_UNLOCK, event -> {
    if(event.failed()){
      future.fail(event.cause().getMessage());
      return;
    }
    future.complete(event.result());
  });
  return future;
}

代码示例来源:origin: org.swisspush/redisques

log.trace("RedisQues read queue lpop: " + key1);
redisClient.lpop(key1, jsonAnswer -> {
  if (jsonAnswer.failed()) {
    log.error("Failed to pop from queue '{}'", queue, jsonAnswer.cause());

相关文章

RedisClient类方法