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

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

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

RedisClient.scriptExistsMany介绍

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

代码示例

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

  1. /**
  2. * Check existence of scripts in the script cache.
  3. * @param scripts List of SHA1 digests identifying scripts in the script cache
  4. * @param handler Handler for the result of this call.
  5. * @return
  6. */
  7. public io.vertx.rxjava.redis.RedisClient scriptExistsMany(List<String> scripts, Handler<AsyncResult<JsonArray>> handler) {
  8. delegate.scriptExistsMany(scripts, handler);
  9. return this;
  10. }

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

  1. /**
  2. * Check existence of scripts in the script cache.
  3. * @param scripts List of SHA1 digests identifying scripts in the script cache
  4. * @param handler Handler for the result of this call.
  5. * @return
  6. */
  7. public io.vertx.rxjava.redis.RedisClient scriptExistsMany(List<String> scripts, Handler<AsyncResult<JsonArray>> handler) {
  8. delegate.scriptExistsMany(scripts, handler);
  9. return this;
  10. }

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

  1. 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) {
  2. io.vertx.core.impl.ConversionHelper.fromObject(j_receiver.scriptExistsMany(scripts != null ? scripts.stream().map(elt -> elt).collect(java.util.stream.Collectors.toList()) : null,
  3. handler != null ? new io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>>() {
  4. public void handle(io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray> ar) {
  5. handler.handle(ar.map(event -> io.vertx.core.impl.ConversionHelper.fromJsonArray(event)));
  6. }
  7. } : null));
  8. return j_receiver;
  9. }
  10. public static io.vertx.redis.RedisClient sdiff(io.vertx.redis.RedisClient j_receiver, java.lang.String key, java.util.List<java.lang.String> cmpkeys, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<Object>>> handler) {

相关文章

RedisClient类方法