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

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

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

RedisClient.scriptExists介绍

[英]Check existence of script in the script cache.
[中]检查脚本缓存中是否存在脚本。

代码示例

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

/**
 * Check existence of script in the script cache.
 * @param script SHA1 digest identifying a script in the script cache
 * @param handler Handler for the result of this call.
 * @return 
 */
public io.vertx.rxjava.redis.RedisClient scriptExists(String script, Handler<AsyncResult<JsonArray>> handler) { 
 delegate.scriptExists(script, handler);
 return this;
}

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

/**
 * Check existence of script in the script cache.
 * @param script SHA1 digest identifying a script in the script cache
 * @param handler Handler for the result of this call.
 * @return 
 */
public io.vertx.rxjava.redis.RedisClient scriptExists(String script, Handler<AsyncResult<JsonArray>> handler) { 
 delegate.scriptExists(script, handler);
 return this;
}

代码示例来源:origin: io.vertx/vertx-lang-groovy

public static io.vertx.redis.RedisClient scriptExists(io.vertx.redis.RedisClient j_receiver, java.lang.String script, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<Object>>> handler) {
 io.vertx.core.impl.ConversionHelper.fromObject(j_receiver.scriptExists(script,
  handler != null ? new io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>>() {
  public void handle(io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray> ar) {
   handler.handle(ar.map(event -> io.vertx.core.impl.ConversionHelper.fromJsonArray(event)));
  }
 } : null));
 return j_receiver;
}
public static io.vertx.redis.RedisClient scriptExistsMany(io.vertx.redis.RedisClient j_receiver, java.util.List<java.lang.String> scripts, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<Object>>> handler) {

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

redisClient.scriptExists(this.sha, resultArray -> {
  if(resultArray.failed()){
    log.error("Error checking whether lua script exists", resultArray.cause());

相关文章

微信公众号

最新文章

更多

RedisClient类方法