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

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

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

RedisClient.hdelMany介绍

[英]Delete one or more hash fields
[中]删除一个或多个哈希字段

代码示例

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

/**
 * Delete one or more hash fields
 * @param key Key string
 * @param fields Field names
 * @param handler Handler for the result of this call.
 * @return 
 */
public io.vertx.rxjava.redis.RedisClient hdelMany(String key, List<String> fields, Handler<AsyncResult<Long>> handler) { 
 delegate.hdelMany(key, fields, handler);
 return this;
}

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

/**
 * Delete one or more hash fields
 * @param key Key string
 * @param fields Field names
 * @param handler Handler for the result of this call.
 * @return 
 */
public io.vertx.rxjava.redis.RedisClient hdelMany(String key, List<String> fields, Handler<AsyncResult<Long>> handler) { 
 delegate.hdelMany(key, fields, handler);
 return this;
}

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

private void deleteLocks(Message<JsonObject> event, JsonArray locks) {
  if (locks == null || locks.isEmpty()) {
    event.reply(createOkReply().put(VALUE, 0));
    return;
  }
  if(!jsonArrayContainsStringsOnly(locks)){
    event.reply(createErrorReply().put(ERROR_TYPE, BAD_INPUT).put(MESSAGE, "Locks must be string values"));
    return;
  }
  redisClient.hdelMany(getLocksKey(), locks.getList(), delManyResult -> {
    if (delManyResult.succeeded()) {
      log.info("Successfully deleted " + delManyResult.result() + " locks");
      event.reply(createOkReply().put(VALUE, delManyResult.result()));
    } else {
      log.warn("failed to delete locks. Message: " + delManyResult.cause().getMessage());
      event.reply(createErrorReply().put(MESSAGE, delManyResult.cause().getMessage()));
    }
  });
}

相关文章

RedisClient类方法