public interface io.vertx.servicediscovery.types.RedisDataSource extends io.vertx.servicediscovery.spi.ServiceType
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.servicediscovery.types.RedisDataSource
  super_class: java.lang.Object
{
  public static final java.lang.String TYPE;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "redis"

  public static io.vertx.servicediscovery.Record createRecord(java.lang.String, io.vertx.core.json.JsonObject, io.vertx.core.json.JsonObject);
    descriptor: (Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/Record;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // java.lang.String name
        start local 1 // io.vertx.core.json.JsonObject location
        start local 2 // io.vertx.core.json.JsonObject metadata
         0: .line 51
            aload 0 /* name */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 52
            aload 1 /* location */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 54
            new io.vertx.servicediscovery.Record
            dup
            invokespecial io.vertx.servicediscovery.Record.<init>:()V
            aload 0 /* name */
            invokevirtual io.vertx.servicediscovery.Record.setName:(Ljava/lang/String;)Lio/vertx/servicediscovery/Record;
         3: .line 55
            ldc "redis"
            invokevirtual io.vertx.servicediscovery.Record.setType:(Ljava/lang/String;)Lio/vertx/servicediscovery/Record;
         4: .line 56
            aload 1 /* location */
            invokevirtual io.vertx.servicediscovery.Record.setLocation:(Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/Record;
         5: .line 54
            astore 3 /* record */
        start local 3 // io.vertx.servicediscovery.Record record
         6: .line 58
            aload 2 /* metadata */
            ifnull 8
         7: .line 59
            aload 3 /* record */
            aload 2 /* metadata */
            invokevirtual io.vertx.servicediscovery.Record.setMetadata:(Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/Record;
            pop
         8: .line 62
      StackMap locals: io.vertx.servicediscovery.Record
      StackMap stack:
            aload 3 /* record */
            areturn
        end local 3 // io.vertx.servicediscovery.Record record
        end local 2 // io.vertx.core.json.JsonObject metadata
        end local 1 // io.vertx.core.json.JsonObject location
        end local 0 // java.lang.String name
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      name  Ljava/lang/String;
            0    9     1  location  Lio/vertx/core/json/JsonObject;
            0    9     2  metadata  Lio/vertx/core/json/JsonObject;
            6    9     3    record  Lio/vertx/servicediscovery/Record;
    MethodParameters:
          Name  Flags
      name      
      location  
      metadata  

  public static void getRedisClient(io.vertx.servicediscovery.ServiceDiscovery, io.vertx.core.json.JsonObject, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.redis.client.Redis>>);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
        start local 1 // io.vertx.core.json.JsonObject filter
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 75
            aload 0 /* discovery */
            aload 1 /* filter */
            invokestatic io.vertx.servicediscovery.types.RedisDataSource.getRedisClient:(Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future;
            aload 2 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 76
            return
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.core.json.JsonObject filter
        end local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0      discovery  Lio/vertx/servicediscovery/ServiceDiscovery;
            0    2     1         filter  Lio/vertx/core/json/JsonObject;
            0    2     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/redis/client/Redis;>;>;
    Signature: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/redis/client/Redis;>;>;)V
    MethodParameters:
               Name  Flags
      discovery      
      filter         
      resultHandler  

  public static io.vertx.core.Future<io.vertx.redis.client.Redis> getRedisClient(io.vertx.servicediscovery.ServiceDiscovery, io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
        start local 1 // io.vertx.core.json.JsonObject filter
         0: .line 82
            aload 0 /* discovery */
            aload 1 /* filter */
            invokeinterface io.vertx.servicediscovery.ServiceDiscovery.getRecord:(Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future;
            aload 0 /* discovery */
            invokedynamic apply(Lio/vertx/servicediscovery/ServiceDiscovery;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/servicediscovery/types/RedisDataSource.lambda$0(Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future; (6 itf)
                  (Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.flatMap:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.json.JsonObject filter
        end local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  discovery  Lio/vertx/servicediscovery/ServiceDiscovery;
            0    1     1     filter  Lio/vertx/core/json/JsonObject;
    Signature: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future<Lio/vertx/redis/client/Redis;>;
    MethodParameters:
           Name  Flags
      discovery  
      filter     

  public static void getRedisClient(io.vertx.servicediscovery.ServiceDiscovery, java.util.function.Function<io.vertx.servicediscovery.Record, java.lang.Boolean>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.redis.client.Redis>>);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Ljava/util/function/Function;Lio/vertx/core/Handler;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
        start local 1 // java.util.function.Function filter
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 101
            aload 0 /* discovery */
            aload 1 /* filter */
            invokestatic io.vertx.servicediscovery.types.RedisDataSource.getRedisClient:(Lio/vertx/servicediscovery/ServiceDiscovery;Ljava/util/function/Function;)Lio/vertx/core/Future;
            aload 2 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 102
            return
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // java.util.function.Function filter
        end local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0      discovery  Lio/vertx/servicediscovery/ServiceDiscovery;
            0    2     1         filter  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
            0    2     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/redis/client/Redis;>;>;
    Signature: (Lio/vertx/servicediscovery/ServiceDiscovery;Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/redis/client/Redis;>;>;)V
    MethodParameters:
               Name  Flags
      discovery      
      filter         
      resultHandler  

  public static io.vertx.core.Future<io.vertx.redis.client.Redis> getRedisClient(io.vertx.servicediscovery.ServiceDiscovery, java.util.function.Function<io.vertx.servicediscovery.Record, java.lang.Boolean>);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Ljava/util/function/Function;)Lio/vertx/core/Future;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
        start local 1 // java.util.function.Function filter
         0: .line 108
            aload 0 /* discovery */
            aload 1 /* filter */
            invokeinterface io.vertx.servicediscovery.ServiceDiscovery.getRecord:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            aload 0 /* discovery */
            invokedynamic apply(Lio/vertx/servicediscovery/ServiceDiscovery;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/servicediscovery/types/RedisDataSource.lambda$1(Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future; (6 itf)
                  (Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.flatMap:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.util.function.Function filter
        end local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  discovery  Lio/vertx/servicediscovery/ServiceDiscovery;
            0    1     1     filter  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
    Signature: (Lio/vertx/servicediscovery/ServiceDiscovery;Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;)Lio/vertx/core/Future<Lio/vertx/redis/client/Redis;>;
    MethodParameters:
           Name  Flags
      discovery  
      filter     

  public static void getRedisClient(io.vertx.servicediscovery.ServiceDiscovery, io.vertx.core.json.JsonObject, io.vertx.core.json.JsonObject, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.redis.client.Redis>>);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
        start local 1 // io.vertx.core.json.JsonObject filter
        start local 2 // io.vertx.core.json.JsonObject consumerConfiguration
        start local 3 // io.vertx.core.Handler resultHandler
         0: .line 128
            aload 0 /* discovery */
            aload 1 /* filter */
            aload 2 /* consumerConfiguration */
            invokestatic io.vertx.servicediscovery.types.RedisDataSource.getRedisClient:(Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future;
            aload 3 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 129
            return
        end local 3 // io.vertx.core.Handler resultHandler
        end local 2 // io.vertx.core.json.JsonObject consumerConfiguration
        end local 1 // io.vertx.core.json.JsonObject filter
        end local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0              discovery  Lio/vertx/servicediscovery/ServiceDiscovery;
            0    2     1                 filter  Lio/vertx/core/json/JsonObject;
            0    2     2  consumerConfiguration  Lio/vertx/core/json/JsonObject;
            0    2     3          resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/redis/client/Redis;>;>;
    Signature: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/redis/client/Redis;>;>;)V
    MethodParameters:
                       Name  Flags
      discovery              
      filter                 
      consumerConfiguration  
      resultHandler          

  public static io.vertx.core.Future<io.vertx.redis.client.Redis> getRedisClient(io.vertx.servicediscovery.ServiceDiscovery, io.vertx.core.json.JsonObject, io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
        start local 1 // io.vertx.core.json.JsonObject filter
        start local 2 // io.vertx.core.json.JsonObject consumerConfiguration
         0: .line 135
            aload 0 /* discovery */
            aload 1 /* filter */
            invokeinterface io.vertx.servicediscovery.ServiceDiscovery.getRecord:(Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future;
            aload 0 /* discovery */
            aload 2 /* consumerConfiguration */
            invokedynamic apply(Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/servicediscovery/types/RedisDataSource.lambda$2(Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future; (6 itf)
                  (Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.flatMap:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.json.JsonObject consumerConfiguration
        end local 1 // io.vertx.core.json.JsonObject filter
        end local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    1     0              discovery  Lio/vertx/servicediscovery/ServiceDiscovery;
            0    1     1                 filter  Lio/vertx/core/json/JsonObject;
            0    1     2  consumerConfiguration  Lio/vertx/core/json/JsonObject;
    Signature: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future<Lio/vertx/redis/client/Redis;>;
    MethodParameters:
                       Name  Flags
      discovery              
      filter                 
      consumerConfiguration  

  public static void getRedisClient(io.vertx.servicediscovery.ServiceDiscovery, java.util.function.Function<io.vertx.servicediscovery.Record, java.lang.Boolean>, io.vertx.core.json.JsonObject, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.redis.client.Redis>>);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Ljava/util/function/Function;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
        start local 1 // java.util.function.Function filter
        start local 2 // io.vertx.core.json.JsonObject consumerConfiguration
        start local 3 // io.vertx.core.Handler resultHandler
         0: .line 155
            aload 0 /* discovery */
            aload 1 /* filter */
            aload 2 /* consumerConfiguration */
            invokestatic io.vertx.servicediscovery.types.RedisDataSource.getRedisClient:(Lio/vertx/servicediscovery/ServiceDiscovery;Ljava/util/function/Function;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future;
            aload 3 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 156
            return
        end local 3 // io.vertx.core.Handler resultHandler
        end local 2 // io.vertx.core.json.JsonObject consumerConfiguration
        end local 1 // java.util.function.Function filter
        end local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0              discovery  Lio/vertx/servicediscovery/ServiceDiscovery;
            0    2     1                 filter  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
            0    2     2  consumerConfiguration  Lio/vertx/core/json/JsonObject;
            0    2     3          resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/redis/client/Redis;>;>;
    Signature: (Lio/vertx/servicediscovery/ServiceDiscovery;Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/redis/client/Redis;>;>;)V
    MethodParameters:
                       Name  Flags
      discovery              
      filter                 
      consumerConfiguration  
      resultHandler          

  public static io.vertx.core.Future<io.vertx.redis.client.Redis> getRedisClient(io.vertx.servicediscovery.ServiceDiscovery, java.util.function.Function<io.vertx.servicediscovery.Record, java.lang.Boolean>, io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Ljava/util/function/Function;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
        start local 1 // java.util.function.Function filter
        start local 2 // io.vertx.core.json.JsonObject consumerConfiguration
         0: .line 163
            aload 0 /* discovery */
            aload 1 /* filter */
            invokeinterface io.vertx.servicediscovery.ServiceDiscovery.getRecord:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            aload 0 /* discovery */
            aload 2 /* consumerConfiguration */
            invokedynamic apply(Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/servicediscovery/types/RedisDataSource.lambda$3(Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future; (6 itf)
                  (Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.flatMap:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.json.JsonObject consumerConfiguration
        end local 1 // java.util.function.Function filter
        end local 0 // io.vertx.servicediscovery.ServiceDiscovery discovery
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    1     0              discovery  Lio/vertx/servicediscovery/ServiceDiscovery;
            0    1     1                 filter  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
            0    1     2  consumerConfiguration  Lio/vertx/core/json/JsonObject;
    Signature: (Lio/vertx/servicediscovery/ServiceDiscovery;Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future<Lio/vertx/redis/client/Redis;>;
    MethodParameters:
                       Name  Flags
      discovery              
      filter                 
      consumerConfiguration  

  private static io.vertx.core.Future lambda$0(io.vertx.servicediscovery.ServiceDiscovery, io.vertx.servicediscovery.Record);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.servicediscovery.Record res
         0: .line 83
            aload 1 /* res */
            ifnonnull 2
         1: .line 84
            ldc "No matching records"
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            areturn
         2: .line 86
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* res */
            invokeinterface io.vertx.servicediscovery.ServiceDiscovery.getReference:(Lio/vertx/servicediscovery/Record;)Lio/vertx/servicediscovery/ServiceReference;
            invokeinterface io.vertx.servicediscovery.ServiceReference.get:()Ljava/lang/Object;
            checkcast io.vertx.redis.client.Redis
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.servicediscovery.Record res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     1   res  Lio/vertx/servicediscovery/Record;

  private static io.vertx.core.Future lambda$1(io.vertx.servicediscovery.ServiceDiscovery, io.vertx.servicediscovery.Record);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.servicediscovery.Record res
         0: .line 109
            aload 1 /* res */
            ifnonnull 2
         1: .line 110
            ldc "No matching records"
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            areturn
         2: .line 112
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* res */
            invokeinterface io.vertx.servicediscovery.ServiceDiscovery.getReference:(Lio/vertx/servicediscovery/Record;)Lio/vertx/servicediscovery/ServiceReference;
            invokeinterface io.vertx.servicediscovery.ServiceReference.get:()Ljava/lang/Object;
            checkcast io.vertx.redis.client.Redis
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.servicediscovery.Record res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     1   res  Lio/vertx/servicediscovery/Record;

  private static io.vertx.core.Future lambda$2(io.vertx.servicediscovery.ServiceDiscovery, io.vertx.core.json.JsonObject, io.vertx.servicediscovery.Record);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 2 // io.vertx.servicediscovery.Record res
         0: .line 136
            aload 2 /* res */
            ifnonnull 2
         1: .line 137
            ldc "No matching records"
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            areturn
         2: .line 139
      StackMap locals:
      StackMap stack:
            aload 0
            aload 2 /* res */
            aload 1
            invokeinterface io.vertx.servicediscovery.ServiceDiscovery.getReferenceWithConfiguration:(Lio/vertx/servicediscovery/Record;Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/ServiceReference;
            invokeinterface io.vertx.servicediscovery.ServiceReference.get:()Ljava/lang/Object;
            checkcast io.vertx.redis.client.Redis
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.servicediscovery.Record res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     2   res  Lio/vertx/servicediscovery/Record;

  private static io.vertx.core.Future lambda$3(io.vertx.servicediscovery.ServiceDiscovery, io.vertx.core.json.JsonObject, io.vertx.servicediscovery.Record);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/json/JsonObject;Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Future;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 2 // io.vertx.servicediscovery.Record res
         0: .line 164
            aload 2 /* res */
            ifnonnull 2
         1: .line 165
            ldc "No matching records"
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            areturn
         2: .line 167
      StackMap locals:
      StackMap stack:
            aload 0
            aload 2 /* res */
            aload 1
            invokeinterface io.vertx.servicediscovery.ServiceDiscovery.getReferenceWithConfiguration:(Lio/vertx/servicediscovery/Record;Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/ServiceReference;
            invokeinterface io.vertx.servicediscovery.ServiceReference.get:()Ljava/lang/Object;
            checkcast io.vertx.redis.client.Redis
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.servicediscovery.Record res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     2   res  Lio/vertx/servicediscovery/Record;
}
SourceFile: "RedisDataSource.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()