public class examples.RedisExamples
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: examples.RedisExamples
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // examples.RedisExamples this
         0: .line 11
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/RedisExamples;

  public void example1(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.RedisExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 14
            aload 1 /* vertx */
            invokestatic io.vertx.redis.client.Redis.createClient:(Lio/vertx/core/Vertx;)Lio/vertx/redis/client/Redis;
         1: .line 15
            invokeinterface io.vertx.redis.client.Redis.connect:()Lio/vertx/core/Future;
         2: .line 16
            invokedynamic handle()Lio/vertx/core/Handler;
              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;)V
                  examples/RedisExamples.lambda$0(Lio/vertx/redis/client/RedisConnection;)V (6)
                  (Lio/vertx/redis/client/RedisConnection;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         3: .line 19
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lexamples/RedisExamples;
            0    4     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example2(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.RedisExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 23
            aload 1 /* vertx */
         1: .line 27
            ldc "redis://:abracadabra@localhost:6379/1"
         2: .line 22
            invokestatic io.vertx.redis.client.Redis.createClient:(Lio/vertx/core/Vertx;Ljava/lang/String;)Lio/vertx/redis/client/Redis;
         3: .line 28
            invokeinterface io.vertx.redis.client.Redis.connect:()Lio/vertx/core/Future;
         4: .line 29
            invokedynamic handle()Lio/vertx/core/Handler;
              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;)V
                  examples/RedisExamples.lambda$1(Lio/vertx/redis/client/RedisConnection;)V (6)
                  (Lio/vertx/redis/client/RedisConnection;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         5: .line 32
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lexamples/RedisExamples;
            0    6     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example3(io.vertx.redis.client.RedisConnection);
    descriptor: (Lio/vertx/redis/client/RedisConnection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.RedisExamples this
        start local 1 // io.vertx.redis.client.RedisConnection client
         0: .line 37
            aload 1 /* client */
            invokestatic io.vertx.redis.client.RedisAPI.api:(Lio/vertx/redis/client/RedisConnection;)Lio/vertx/redis/client/RedisAPI;
            astore 2 /* redis */
        start local 2 // io.vertx.redis.client.RedisAPI redis
         1: .line 39
            aload 2 /* redis */
         2: .line 40
            ldc "mykey"
            invokeinterface io.vertx.redis.client.RedisAPI.get:(Ljava/lang/String;)Lio/vertx/core/Future;
         3: .line 41
            invokedynamic handle()Lio/vertx/core/Handler;
              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;)V
                  examples/RedisExamples.lambda$2(Lio/vertx/redis/client/Response;)V (6)
                  (Lio/vertx/redis/client/Response;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         4: .line 44
            return
        end local 2 // io.vertx.redis.client.RedisAPI redis
        end local 1 // io.vertx.redis.client.RedisConnection client
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lexamples/RedisExamples;
            0    5     1  client  Lio/vertx/redis/client/RedisConnection;
            1    5     2   redis  Lio/vertx/redis/client/RedisAPI;
    MethodParameters:
        Name  Flags
      client  

  public void example4(io.vertx.redis.client.Response);
    descriptor: (Lio/vertx/redis/client/Response;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.RedisExamples this
        start local 1 // io.vertx.redis.client.Response response
         0: .line 48
            aload 1 /* response */
            invokeinterface io.vertx.redis.client.Response.type:()Lio/vertx/redis/client/ResponseType;
            getstatic io.vertx.redis.client.ResponseType.MULTI:Lio/vertx/redis/client/ResponseType;
            if_acmpne 4
         1: .line 49
            aload 1 /* response */
            invokeinterface io.vertx.redis.client.Response.iterator:()Ljava/util/Iterator;
            astore 2
            goto 3
      StackMap locals: java.util.Iterator
      StackMap stack:
         2: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.redis.client.Response
            pop
      StackMap locals:
      StackMap stack:
         3: aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         4: .line 53
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.redis.client.Response response
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lexamples/RedisExamples;
            0    5     1  response  Lio/vertx/redis/client/Response;
    MethodParameters:
          Name  Flags
      response  

  public void example5(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.RedisExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 57
            aload 1 /* vertx */
         1: .line 58
            new io.vertx.redis.client.RedisOptions
            dup
            invokespecial io.vertx.redis.client.RedisOptions.<init>:()V
         2: .line 59
            getstatic io.vertx.redis.client.RedisClientType.SENTINEL:Lio/vertx/redis/client/RedisClientType;
            invokevirtual io.vertx.redis.client.RedisOptions.setType:(Lio/vertx/redis/client/RedisClientType;)Lio/vertx/redis/client/RedisOptions;
         3: .line 60
            ldc "redis://127.0.0.1:5000"
            invokevirtual io.vertx.redis.client.RedisOptions.addConnectionString:(Ljava/lang/String;)Lio/vertx/redis/client/RedisOptions;
         4: .line 61
            ldc "redis://127.0.0.1:5001"
            invokevirtual io.vertx.redis.client.RedisOptions.addConnectionString:(Ljava/lang/String;)Lio/vertx/redis/client/RedisOptions;
         5: .line 62
            ldc "redis://127.0.0.1:5002"
            invokevirtual io.vertx.redis.client.RedisOptions.addConnectionString:(Ljava/lang/String;)Lio/vertx/redis/client/RedisOptions;
         6: .line 63
            ldc "sentinel7000"
            invokevirtual io.vertx.redis.client.RedisOptions.setMasterName:(Ljava/lang/String;)Lio/vertx/redis/client/RedisOptions;
         7: .line 64
            getstatic io.vertx.redis.client.RedisRole.MASTER:Lio/vertx/redis/client/RedisRole;
            invokevirtual io.vertx.redis.client.RedisOptions.setRole:(Lio/vertx/redis/client/RedisRole;)Lio/vertx/redis/client/RedisOptions;
         8: .line 56
            invokestatic io.vertx.redis.client.Redis.createClient:(Lio/vertx/core/Vertx;Lio/vertx/redis/client/RedisOptions;)Lio/vertx/redis/client/Redis;
         9: .line 65
            invokeinterface io.vertx.redis.client.Redis.connect:()Lio/vertx/core/Future;
        10: .line 66
            invokedynamic handle()Lio/vertx/core/Handler;
              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;)V
                  examples/RedisExamples.lambda$3(Lio/vertx/redis/client/RedisConnection;)V (6)
                  (Lio/vertx/redis/client/RedisConnection;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
        11: .line 72
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lexamples/RedisExamples;
            0   12     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example6();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // examples.RedisExamples this
         0: .line 75
            new io.vertx.redis.client.RedisOptions
            dup
            invokespecial io.vertx.redis.client.RedisOptions.<init>:()V
         1: .line 76
            ldc "redis://127.0.0.1:7000"
            invokevirtual io.vertx.redis.client.RedisOptions.addConnectionString:(Ljava/lang/String;)Lio/vertx/redis/client/RedisOptions;
         2: .line 77
            ldc "redis://127.0.0.1:7001"
            invokevirtual io.vertx.redis.client.RedisOptions.addConnectionString:(Ljava/lang/String;)Lio/vertx/redis/client/RedisOptions;
         3: .line 78
            ldc "redis://127.0.0.1:7002"
            invokevirtual io.vertx.redis.client.RedisOptions.addConnectionString:(Ljava/lang/String;)Lio/vertx/redis/client/RedisOptions;
         4: .line 79
            ldc "redis://127.0.0.1:7003"
            invokevirtual io.vertx.redis.client.RedisOptions.addConnectionString:(Ljava/lang/String;)Lio/vertx/redis/client/RedisOptions;
         5: .line 80
            ldc "redis://127.0.0.1:7004"
            invokevirtual io.vertx.redis.client.RedisOptions.addConnectionString:(Ljava/lang/String;)Lio/vertx/redis/client/RedisOptions;
         6: .line 81
            ldc "redis://127.0.0.1:7005"
            invokevirtual io.vertx.redis.client.RedisOptions.addConnectionString:(Ljava/lang/String;)Lio/vertx/redis/client/RedisOptions;
            pop
         7: .line 82
            return
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lexamples/RedisExamples;

  public void example7(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.RedisExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 86
            aload 1 /* vertx */
            new io.vertx.redis.client.RedisOptions
            dup
            invokespecial io.vertx.redis.client.RedisOptions.<init>:()V
            invokestatic io.vertx.redis.client.Redis.createClient:(Lio/vertx/core/Vertx;Lio/vertx/redis/client/RedisOptions;)Lio/vertx/redis/client/Redis;
         1: .line 87
            invokeinterface io.vertx.redis.client.Redis.connect:()Lio/vertx/core/Future;
         2: .line 88
            invokedynamic handle()Lio/vertx/core/Handler;
              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;)V
                  examples/RedisExamples.lambda$5(Lio/vertx/redis/client/RedisConnection;)V (6)
                  (Lio/vertx/redis/client/RedisConnection;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         3: .line 93
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lexamples/RedisExamples;
            0    4     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example8(io.vertx.redis.client.RedisConnection);
    descriptor: (Lio/vertx/redis/client/RedisConnection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.RedisExamples this
        start local 1 // io.vertx.redis.client.RedisConnection redis
         0: .line 97
            aload 1 /* redis */
            getstatic io.vertx.redis.client.Command.PUBLISH:Lio/vertx/redis/client/Command;
            invokestatic io.vertx.redis.client.Request.cmd:(Lio/vertx/redis/client/Command;)Lio/vertx/redis/client/Request;
            ldc "channel1"
            invokeinterface io.vertx.redis.client.Request.arg:(Ljava/lang/String;)Lio/vertx/redis/client/Request;
            ldc "Hello World!"
            invokeinterface io.vertx.redis.client.Request.arg:(Ljava/lang/String;)Lio/vertx/redis/client/Request;
            invokeinterface io.vertx.redis.client.RedisConnection.send:(Lio/vertx/redis/client/Request;)Lio/vertx/core/Future;
         1: .line 98
            invokedynamic handle()Lio/vertx/core/Handler;
              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;)V
                  examples/RedisExamples.lambda$7(Lio/vertx/redis/client/Response;)V (6)
                  (Lio/vertx/redis/client/Response;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 101
            return
        end local 1 // io.vertx.redis.client.RedisConnection redis
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lexamples/RedisExamples;
            0    3     1  redis  Lio/vertx/redis/client/RedisConnection;
    MethodParameters:
       Name  Flags
      redis  

  public void example9(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.RedisExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 105
            aload 1 /* vertx */
            ldc "unix:///tmp/redis.sock"
            invokestatic io.vertx.redis.client.Redis.createClient:(Lio/vertx/core/Vertx;Ljava/lang/String;)Lio/vertx/redis/client/Redis;
         1: .line 106
            invokeinterface io.vertx.redis.client.Redis.connect:()Lio/vertx/core/Future;
         2: .line 107
            invokedynamic handle()Lio/vertx/core/Handler;
              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;)V
                  examples/RedisExamples.lambda$8(Lio/vertx/redis/client/RedisConnection;)V (6)
                  (Lio/vertx/redis/client/RedisConnection;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         3: .line 110
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lexamples/RedisExamples;
            0    4     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example10();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // examples.RedisExamples this
         0: .line 169
            return
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/RedisExamples;

  public void example11(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.RedisExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 172
            aload 1 /* vertx */
            ldc "redis://localhost:7006"
            invokestatic io.vertx.redis.client.Redis.createClient:(Lio/vertx/core/Vertx;Ljava/lang/String;)Lio/vertx/redis/client/Redis;
         1: .line 173
            getstatic io.vertx.redis.client.Command.PING:Lio/vertx/redis/client/Command;
            invokestatic io.vertx.redis.client.Request.cmd:(Lio/vertx/redis/client/Command;)Lio/vertx/redis/client/Request;
            invokeinterface io.vertx.redis.client.Redis.send:(Lio/vertx/redis/client/Request;)Lio/vertx/core/Future;
         2: .line 174
            invokedynamic handle()Lio/vertx/core/Handler;
              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;)V
                  examples/RedisExamples.lambda$9(Lio/vertx/redis/client/Response;)V (6)
                  (Lio/vertx/redis/client/Response;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         3: .line 177
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lexamples/RedisExamples;
            0    4     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example12(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.RedisExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 181
            aload 1 /* vertx */
         1: .line 182
            new io.vertx.redis.client.RedisOptions
            dup
            invokespecial io.vertx.redis.client.RedisOptions.<init>:()V
         2: .line 183
            ldc "redis://localhost:7006"
            invokevirtual io.vertx.redis.client.RedisOptions.setConnectionString:(Ljava/lang/String;)Lio/vertx/redis/client/RedisOptions;
         3: .line 185
            bipush 8
            invokevirtual io.vertx.redis.client.RedisOptions.setMaxPoolSize:(I)Lio/vertx/redis/client/RedisOptions;
         4: .line 188
            bipush 32
            invokevirtual io.vertx.redis.client.RedisOptions.setMaxWaitingHandlers:(I)Lio/vertx/redis/client/RedisOptions;
         5: .line 180
            invokestatic io.vertx.redis.client.Redis.createClient:(Lio/vertx/core/Vertx;Lio/vertx/redis/client/RedisOptions;)Lio/vertx/redis/client/Redis;
         6: .line 189
            getstatic io.vertx.redis.client.Command.PING:Lio/vertx/redis/client/Command;
            invokestatic io.vertx.redis.client.Request.cmd:(Lio/vertx/redis/client/Command;)Lio/vertx/redis/client/Request;
            invokeinterface io.vertx.redis.client.Redis.send:(Lio/vertx/redis/client/Request;)Lio/vertx/core/Future;
         7: .line 190
            invokedynamic handle()Lio/vertx/core/Handler;
              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;)V
                  examples/RedisExamples.lambda$10(Lio/vertx/redis/client/Response;)V (6)
                  (Lio/vertx/redis/client/Response;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         8: .line 193
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.RedisExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lexamples/RedisExamples;
            0    9     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  private static void lambda$0(io.vertx.redis.client.RedisConnection);
    descriptor: (Lio/vertx/redis/client/RedisConnection;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.RedisConnection conn
         0: .line 18
            return
        end local 0 // io.vertx.redis.client.RedisConnection conn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  conn  Lio/vertx/redis/client/RedisConnection;

  private static void lambda$1(io.vertx.redis.client.RedisConnection);
    descriptor: (Lio/vertx/redis/client/RedisConnection;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.RedisConnection conn
         0: .line 31
            return
        end local 0 // io.vertx.redis.client.RedisConnection conn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  conn  Lio/vertx/redis/client/RedisConnection;

  private static void lambda$2(io.vertx.redis.client.Response);
    descriptor: (Lio/vertx/redis/client/Response;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.Response value
         0: .line 43
            return
        end local 0 // io.vertx.redis.client.Response value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  value  Lio/vertx/redis/client/Response;

  private static void lambda$3(io.vertx.redis.client.RedisConnection);
    descriptor: (Lio/vertx/redis/client/RedisConnection;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.RedisConnection conn
         0: .line 67
            aload 0 /* conn */
            getstatic io.vertx.redis.client.Command.INFO:Lio/vertx/redis/client/Command;
            invokestatic io.vertx.redis.client.Request.cmd:(Lio/vertx/redis/client/Command;)Lio/vertx/redis/client/Request;
            invokeinterface io.vertx.redis.client.RedisConnection.send:(Lio/vertx/redis/client/Request;)Lio/vertx/core/Future;
         1: .line 68
            invokedynamic handle()Lio/vertx/core/Handler;
              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;)V
                  examples/RedisExamples.lambda$4(Lio/vertx/redis/client/Response;)V (6)
                  (Lio/vertx/redis/client/Response;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 71
            return
        end local 0 // io.vertx.redis.client.RedisConnection conn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  conn  Lio/vertx/redis/client/RedisConnection;

  private static void lambda$5(io.vertx.redis.client.RedisConnection);
    descriptor: (Lio/vertx/redis/client/RedisConnection;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.RedisConnection conn
         0: .line 89
            aload 0 /* conn */
            invokedynamic handle()Lio/vertx/core/Handler;
              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;)V
                  examples/RedisExamples.lambda$6(Lio/vertx/redis/client/Response;)V (6)
                  (Lio/vertx/redis/client/Response;)V
            invokeinterface io.vertx.redis.client.RedisConnection.handler:(Lio/vertx/core/Handler;)Lio/vertx/redis/client/RedisConnection;
            pop
         1: .line 92
            return
        end local 0 // io.vertx.redis.client.RedisConnection conn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  conn  Lio/vertx/redis/client/RedisConnection;

  private static void lambda$7(io.vertx.redis.client.Response);
    descriptor: (Lio/vertx/redis/client/Response;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.Response res
         0: .line 100
            return
        end local 0 // io.vertx.redis.client.Response res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   res  Lio/vertx/redis/client/Response;

  private static void lambda$8(io.vertx.redis.client.RedisConnection);
    descriptor: (Lio/vertx/redis/client/RedisConnection;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.RedisConnection conn
         0: .line 109
            return
        end local 0 // io.vertx.redis.client.RedisConnection conn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  conn  Lio/vertx/redis/client/RedisConnection;

  private static void lambda$9(io.vertx.redis.client.Response);
    descriptor: (Lio/vertx/redis/client/Response;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.Response res
         0: .line 176
            return
        end local 0 // io.vertx.redis.client.Response res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   res  Lio/vertx/redis/client/Response;

  private static void lambda$10(io.vertx.redis.client.Response);
    descriptor: (Lio/vertx/redis/client/Response;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.Response res
         0: .line 192
            return
        end local 0 // io.vertx.redis.client.Response res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   res  Lio/vertx/redis/client/Response;

  private static void lambda$4(io.vertx.redis.client.Response);
    descriptor: (Lio/vertx/redis/client/Response;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.Response info
         0: .line 70
            return
        end local 0 // io.vertx.redis.client.Response info
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  info  Lio/vertx/redis/client/Response;

  private static void lambda$6(io.vertx.redis.client.Response);
    descriptor: (Lio/vertx/redis/client/Response;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.Response message
         0: .line 91
            return
        end local 0 // io.vertx.redis.client.Response message
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  message  Lio/vertx/redis/client/Response;
}
SourceFile: "RedisExamples.java"
NestMembers:
  examples.RedisExamples$1RedisVerticle
InnerClasses:
  RedisVerticle = examples.RedisExamples$1RedisVerticle
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles