Please wait. This can take some minutes ...
                    
                 
             
         
        
            
                
                    
                    
                        Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. 
                        
                        Project price only 1 $ 
                        
                            You can buy this project and download/modify it how often you want.
                        
                        
                        
                     
                 
             
         
                    
                 
    
    
    io.vertx.rxjava.redis.client.RedisAPI Maven / Gradle / Ivy 
    
/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */
package io.vertx.rxjava.redis.client;
import rx.Observable;
import rx.Single;
import io.vertx.rx.java.RxHelper;
import io.vertx.rx.java.WriteStreamSubscriber;
import io.vertx.rx.java.SingleOnSubscribeAdapter;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
import java.util.stream.Collectors;
import io.vertx.core.Handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.lang.rx.RxGen;
import io.vertx.lang.rx.TypeArg;
import io.vertx.lang.rx.MappingIterator;
/**
 * Auto generated  Redis API client wrapper.
 *
 * 
 * NOTE: This class has been automatically generated from the {@link io.vertx.redis.client.RedisAPI original} non RX-ified interface using Vert.x codegen.
 */
@RxGen(io.vertx.redis.client.RedisAPI.class)
public class RedisAPI {
  @Override
  public String toString() {
    return delegate.toString();
  }
  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    RedisAPI that = (RedisAPI) o;
    return delegate.equals(that.delegate);
  }
  
  @Override
  public int hashCode() {
    return delegate.hashCode();
  }
  public static final TypeArg __TYPE_ARG = new TypeArg<>(    obj -> new RedisAPI((io.vertx.redis.client.RedisAPI) obj),
    RedisAPI::getDelegate
  );
  private final io.vertx.redis.client.RedisAPI delegate;
  
  public RedisAPI(io.vertx.redis.client.RedisAPI delegate) {
    this.delegate = delegate;
  }
  public RedisAPI(Object delegate) {
    this.delegate = (io.vertx.redis.client.RedisAPI)delegate;
  }
  public io.vertx.redis.client.RedisAPI getDelegate() {
    return delegate;
  }
  public void close() { 
    delegate.close();
  }
  /**
   * Redis command acl .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI acl(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.acl(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command acl .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI acl(java.util.List args) {
    return 
acl(args, ar -> { });
  }
    /**
   * Redis command acl .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxAcl(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      acl(args, fut);
    }));
  }
  /**
   * Redis command append .
   * @param arg0 
   * @param arg1 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI append(java.lang.String arg0, java.lang.String arg1, io.vertx.core.Handler> handler) { 
    delegate.append(arg0, arg1, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command append .
   * @param arg0 
   * @param arg1 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI append(java.lang.String arg0, java.lang.String arg1) {
    return 
append(arg0, arg1, ar -> { });
  }
    /**
   * Redis command append .
   * @param arg0 
   * @param arg1 
   * @return fluent self
   */
  public rx.Single rxAppend(java.lang.String arg0, java.lang.String arg1) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      append(arg0, arg1, fut);
    }));
  }
  /**
   * Redis command asking .
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI asking(io.vertx.core.Handler> handler) { 
    delegate.asking(new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command asking .
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI asking() {
    return 
asking(ar -> { });
  }
    /**
   * Redis command asking .
   * @return fluent self
   */
  public rx.Single rxAsking() { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      asking(fut);
    }));
  }
  /**
   * Redis command auth .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI auth(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.auth(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command auth .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI auth(java.util.List args) {
    return 
auth(args, ar -> { });
  }
    /**
   * Redis command auth .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxAuth(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      auth(args, fut);
    }));
  }
  /**
   * Redis command bgrewriteaof .
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bgrewriteaof(io.vertx.core.Handler> handler) { 
    delegate.bgrewriteaof(new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command bgrewriteaof .
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bgrewriteaof() {
    return 
bgrewriteaof(ar -> { });
  }
    /**
   * Redis command bgrewriteaof .
   * @return fluent self
   */
  public rx.Single rxBgrewriteaof() { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      bgrewriteaof(fut);
    }));
  }
  /**
   * Redis command bgsave .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bgsave(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.bgsave(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command bgsave .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bgsave(java.util.List args) {
    return 
bgsave(args, ar -> { });
  }
    /**
   * Redis command bgsave .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxBgsave(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      bgsave(args, fut);
    }));
  }
  /**
   * Redis command bitcount .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bitcount(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.bitcount(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command bitcount .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bitcount(java.util.List args) {
    return 
bitcount(args, ar -> { });
  }
    /**
   * Redis command bitcount .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxBitcount(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      bitcount(args, fut);
    }));
  }
  /**
   * Redis command bitfield .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bitfield(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.bitfield(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command bitfield .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bitfield(java.util.List args) {
    return 
bitfield(args, ar -> { });
  }
    /**
   * Redis command bitfield .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxBitfield(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      bitfield(args, fut);
    }));
  }
  /**
   * Redis command bitfieldRo .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bitfieldRo(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.bitfieldRo(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command bitfieldRo .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bitfieldRo(java.util.List args) {
    return 
bitfieldRo(args, ar -> { });
  }
    /**
   * Redis command bitfieldRo .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxBitfieldRo(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      bitfieldRo(args, fut);
    }));
  }
  /**
   * Redis command bitop .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bitop(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.bitop(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command bitop .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bitop(java.util.List args) {
    return 
bitop(args, ar -> { });
  }
    /**
   * Redis command bitop .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxBitop(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      bitop(args, fut);
    }));
  }
  /**
   * Redis command bitpos .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bitpos(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.bitpos(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command bitpos .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bitpos(java.util.List args) {
    return 
bitpos(args, ar -> { });
  }
    /**
   * Redis command bitpos .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxBitpos(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      bitpos(args, fut);
    }));
  }
  /**
   * Redis command blmove .
   * @param arg0 
   * @param arg1 
   * @param arg2 
   * @param arg3 
   * @param arg4 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI blmove(java.lang.String arg0, java.lang.String arg1, java.lang.String arg2, java.lang.String arg3, java.lang.String arg4, io.vertx.core.Handler> handler) { 
    delegate.blmove(arg0, arg1, arg2, arg3, arg4, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command blmove .
   * @param arg0 
   * @param arg1 
   * @param arg2 
   * @param arg3 
   * @param arg4 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI blmove(java.lang.String arg0, java.lang.String arg1, java.lang.String arg2, java.lang.String arg3, java.lang.String arg4) {
    return 
blmove(arg0, arg1, arg2, arg3, arg4, ar -> { });
  }
    /**
   * Redis command blmove .
   * @param arg0 
   * @param arg1 
   * @param arg2 
   * @param arg3 
   * @param arg4 
   * @return fluent self
   */
  public rx.Single rxBlmove(java.lang.String arg0, java.lang.String arg1, java.lang.String arg2, java.lang.String arg3, java.lang.String arg4) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      blmove(arg0, arg1, arg2, arg3, arg4, fut);
    }));
  }
  /**
   * Redis command blpop .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI blpop(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.blpop(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command blpop .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI blpop(java.util.List args) {
    return 
blpop(args, ar -> { });
  }
    /**
   * Redis command blpop .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxBlpop(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      blpop(args, fut);
    }));
  }
  /**
   * Redis command brpop .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI brpop(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.brpop(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command brpop .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI brpop(java.util.List args) {
    return 
brpop(args, ar -> { });
  }
    /**
   * Redis command brpop .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxBrpop(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      brpop(args, fut);
    }));
  }
  /**
   * Redis command brpoplpush .
   * @param arg0 
   * @param arg1 
   * @param arg2 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI brpoplpush(java.lang.String arg0, java.lang.String arg1, java.lang.String arg2, io.vertx.core.Handler> handler) { 
    delegate.brpoplpush(arg0, arg1, arg2, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command brpoplpush .
   * @param arg0 
   * @param arg1 
   * @param arg2 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI brpoplpush(java.lang.String arg0, java.lang.String arg1, java.lang.String arg2) {
    return 
brpoplpush(arg0, arg1, arg2, ar -> { });
  }
    /**
   * Redis command brpoplpush .
   * @param arg0 
   * @param arg1 
   * @param arg2 
   * @return fluent self
   */
  public rx.Single rxBrpoplpush(java.lang.String arg0, java.lang.String arg1, java.lang.String arg2) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      brpoplpush(arg0, arg1, arg2, fut);
    }));
  }
  /**
   * Redis command bzpopmax .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bzpopmax(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.bzpopmax(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command bzpopmax .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bzpopmax(java.util.List args) {
    return 
bzpopmax(args, ar -> { });
  }
    /**
   * Redis command bzpopmax .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxBzpopmax(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      bzpopmax(args, fut);
    }));
  }
  /**
   * Redis command bzpopmin .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bzpopmin(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.bzpopmin(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command bzpopmin .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI bzpopmin(java.util.List args) {
    return 
bzpopmin(args, ar -> { });
  }
    /**
   * Redis command bzpopmin .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxBzpopmin(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      bzpopmin(args, fut);
    }));
  }
  /**
   * Redis command client .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI client(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.client(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command client .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI client(java.util.List args) {
    return 
client(args, ar -> { });
  }
    /**
   * Redis command client .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxClient(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      client(args, fut);
    }));
  }
  /**
   * Redis command cluster .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI cluster(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.cluster(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command cluster .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI cluster(java.util.List args) {
    return 
cluster(args, ar -> { });
  }
    /**
   * Redis command cluster .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxCluster(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      cluster(args, fut);
    }));
  }
  /**
   * Redis command command .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI command(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.command(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command command .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI command(java.util.List args) {
    return 
command(args, ar -> { });
  }
    /**
   * Redis command command .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxCommand(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      command(args, fut);
    }));
  }
  /**
   * Redis command config .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI config(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.config(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command config .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI config(java.util.List args) {
    return 
config(args, ar -> { });
  }
    /**
   * Redis command config .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxConfig(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      config(args, fut);
    }));
  }
  /**
   * Redis command copy .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI copy(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.copy(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command copy .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI copy(java.util.List args) {
    return 
copy(args, ar -> { });
  }
    /**
   * Redis command copy .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxCopy(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      copy(args, fut);
    }));
  }
  /**
   * Redis command dbsize .
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI dbsize(io.vertx.core.Handler> handler) { 
    delegate.dbsize(new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command dbsize .
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI dbsize() {
    return 
dbsize(ar -> { });
  }
    /**
   * Redis command dbsize .
   * @return fluent self
   */
  public rx.Single rxDbsize() { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      dbsize(fut);
    }));
  }
  /**
   * Redis command debug .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI debug(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.debug(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command debug .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI debug(java.util.List args) {
    return 
debug(args, ar -> { });
  }
    /**
   * Redis command debug .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxDebug(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      debug(args, fut);
    }));
  }
  /**
   * Redis command decr .
   * @param arg0 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI decr(java.lang.String arg0, io.vertx.core.Handler> handler) { 
    delegate.decr(arg0, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command decr .
   * @param arg0 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI decr(java.lang.String arg0) {
    return 
decr(arg0, ar -> { });
  }
    /**
   * Redis command decr .
   * @param arg0 
   * @return fluent self
   */
  public rx.Single rxDecr(java.lang.String arg0) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      decr(arg0, fut);
    }));
  }
  /**
   * Redis command decrby .
   * @param arg0 
   * @param arg1 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI decrby(java.lang.String arg0, java.lang.String arg1, io.vertx.core.Handler> handler) { 
    delegate.decrby(arg0, arg1, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command decrby .
   * @param arg0 
   * @param arg1 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI decrby(java.lang.String arg0, java.lang.String arg1) {
    return 
decrby(arg0, arg1, ar -> { });
  }
    /**
   * Redis command decrby .
   * @param arg0 
   * @param arg1 
   * @return fluent self
   */
  public rx.Single rxDecrby(java.lang.String arg0, java.lang.String arg1) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      decrby(arg0, arg1, fut);
    }));
  }
  /**
   * Redis command del .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI del(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.del(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command del .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI del(java.util.List args) {
    return 
del(args, ar -> { });
  }
    /**
   * Redis command del .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxDel(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      del(args, fut);
    }));
  }
  /**
   * Redis command discard .
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI discard(io.vertx.core.Handler> handler) { 
    delegate.discard(new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command discard .
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI discard() {
    return 
discard(ar -> { });
  }
    /**
   * Redis command discard .
   * @return fluent self
   */
  public rx.Single rxDiscard() { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      discard(fut);
    }));
  }
  /**
   * Redis command dump .
   * @param arg0 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI dump(java.lang.String arg0, io.vertx.core.Handler> handler) { 
    delegate.dump(arg0, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command dump .
   * @param arg0 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI dump(java.lang.String arg0) {
    return 
dump(arg0, ar -> { });
  }
    /**
   * Redis command dump .
   * @param arg0 
   * @return fluent self
   */
  public rx.Single rxDump(java.lang.String arg0) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      dump(arg0, fut);
    }));
  }
  /**
   * Redis command echo .
   * @param arg0 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI echo(java.lang.String arg0, io.vertx.core.Handler> handler) { 
    delegate.echo(arg0, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command echo .
   * @param arg0 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI echo(java.lang.String arg0) {
    return 
echo(arg0, ar -> { });
  }
    /**
   * Redis command echo .
   * @param arg0 
   * @return fluent self
   */
  public rx.Single rxEcho(java.lang.String arg0) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      echo(arg0, fut);
    }));
  }
  /**
   * Redis command eval .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI eval(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.eval(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command eval .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI eval(java.util.List args) {
    return 
eval(args, ar -> { });
  }
    /**
   * Redis command eval .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxEval(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      eval(args, fut);
    }));
  }
  /**
   * Redis command evalsha .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI evalsha(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.evalsha(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command evalsha .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI evalsha(java.util.List args) {
    return 
evalsha(args, ar -> { });
  }
    /**
   * Redis command evalsha .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxEvalsha(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      evalsha(args, fut);
    }));
  }
  /**
   * Redis command exec .
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI exec(io.vertx.core.Handler> handler) { 
    delegate.exec(new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command exec .
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI exec() {
    return 
exec(ar -> { });
  }
    /**
   * Redis command exec .
   * @return fluent self
   */
  public rx.Single rxExec() { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      exec(fut);
    }));
  }
  /**
   * Redis command exists .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI exists(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.exists(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command exists .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI exists(java.util.List args) {
    return 
exists(args, ar -> { });
  }
    /**
   * Redis command exists .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxExists(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      exists(args, fut);
    }));
  }
  /**
   * Redis command expire .
   * @param arg0 
   * @param arg1 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI expire(java.lang.String arg0, java.lang.String arg1, io.vertx.core.Handler> handler) { 
    delegate.expire(arg0, arg1, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command expire .
   * @param arg0 
   * @param arg1 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI expire(java.lang.String arg0, java.lang.String arg1) {
    return 
expire(arg0, arg1, ar -> { });
  }
    /**
   * Redis command expire .
   * @param arg0 
   * @param arg1 
   * @return fluent self
   */
  public rx.Single rxExpire(java.lang.String arg0, java.lang.String arg1) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      expire(arg0, arg1, fut);
    }));
  }
  /**
   * Redis command expireat .
   * @param arg0 
   * @param arg1 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI expireat(java.lang.String arg0, java.lang.String arg1, io.vertx.core.Handler> handler) { 
    delegate.expireat(arg0, arg1, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command expireat .
   * @param arg0 
   * @param arg1 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI expireat(java.lang.String arg0, java.lang.String arg1) {
    return 
expireat(arg0, arg1, ar -> { });
  }
    /**
   * Redis command expireat .
   * @param arg0 
   * @param arg1 
   * @return fluent self
   */
  public rx.Single rxExpireat(java.lang.String arg0, java.lang.String arg1) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      expireat(arg0, arg1, fut);
    }));
  }
  /**
   * Redis command failover .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI failover(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.failover(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command failover .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI failover(java.util.List args) {
    return 
failover(args, ar -> { });
  }
    /**
   * Redis command failover .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxFailover(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      failover(args, fut);
    }));
  }
  /**
   * Redis command flushall .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI flushall(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.flushall(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command flushall .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI flushall(java.util.List args) {
    return 
flushall(args, ar -> { });
  }
    /**
   * Redis command flushall .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxFlushall(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      flushall(args, fut);
    }));
  }
  /**
   * Redis command flushdb .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI flushdb(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.flushdb(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command flushdb .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI flushdb(java.util.List args) {
    return 
flushdb(args, ar -> { });
  }
    /**
   * Redis command flushdb .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxFlushdb(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      flushdb(args, fut);
    }));
  }
  /**
   * Redis command geoadd .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI geoadd(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.geoadd(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command geoadd .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI geoadd(java.util.List args) {
    return 
geoadd(args, ar -> { });
  }
    /**
   * Redis command geoadd .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxGeoadd(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      geoadd(args, fut);
    }));
  }
  /**
   * Redis command geodist .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI geodist(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.geodist(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command geodist .
   * @param args 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI geodist(java.util.List args) {
    return 
geodist(args, ar -> { });
  }
    /**
   * Redis command geodist .
   * @param args 
   * @return fluent self
   */
  public rx.Single rxGeodist(java.util.List args) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      geodist(args, fut);
    }));
  }
  /**
   * Redis command geohash .
   * @param args 
   * @param handler 
   * @return fluent self
   */
  public io.vertx.rxjava.redis.client.RedisAPI geohash(java.util.List args, io.vertx.core.Handler> handler) { 
    delegate.geohash(args, new Handler>() {
      public void handle(AsyncResult ar) {
        if (ar.succeeded()) {
          handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.redis.client.Response.newInstance((io.vertx.redis.client.Response)ar.result())));
        } else {
          handler.handle(io.vertx.core.Future.failedFuture(ar.cause()));
        }
      }
    });
    return this;
  }
  /**
   * Redis command