public interface io.vertx.redis.client.Request
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.redis.client.Request
  super_class: java.lang.Object
{
  public static io.vertx.redis.client.Request cmd(io.vertx.redis.client.Command);
    descriptor: (Lio/vertx/redis/client/Command;)Lio/vertx/redis/client/Request;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.Command command
         0: .line 45
            new io.vertx.redis.client.impl.RequestImpl
            dup
            aload 0 /* command */
            invokespecial io.vertx.redis.client.impl.RequestImpl.<init>:(Lio/vertx/redis/client/Command;)V
            areturn
        end local 0 // io.vertx.redis.client.Command command
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  command  Lio/vertx/redis/client/Command;
    MethodParameters:
         Name  Flags
      command  

  public abstract io.vertx.redis.client.Request arg(byte[]);
    descriptor: ([B)Lio/vertx/redis/client/Request;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // java.lang.String arg
         0: .line 62
            aload 1 /* arg */
            ifnonnull 2
         1: .line 63
            aload 0 /* this */
            invokeinterface io.vertx.redis.client.Request.nullArg:()Lio/vertx/redis/client/Request;
            areturn
         2: .line 65
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* arg */
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokeinterface io.vertx.redis.client.Request.arg:([B)Lio/vertx/redis/client/Request;
            areturn
        end local 1 // java.lang.String arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/redis/client/Request;
            0    3     1   arg  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // java.lang.String arg
        start local 2 // java.lang.String enc
         0: .line 74
            aload 1 /* arg */
            ifnonnull 2
         1: .line 75
            aload 0 /* this */
            invokeinterface io.vertx.redis.client.Request.nullArg:()Lio/vertx/redis/client/Request;
            areturn
         2: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* arg */
            aload 2 /* enc */
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokeinterface io.vertx.redis.client.Request.arg:([B)Lio/vertx/redis/client/Request;
            areturn
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/redis/client/Request;
            0    3     1   arg  Ljava/lang/String;
            0    3     2   enc  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   
      enc   

  public abstract io.vertx.redis.client.Request arg(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/redis/client/Request;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   

  public abstract io.vertx.redis.client.Request arg(long);
    descriptor: (J)Lio/vertx/redis/client/Request;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(int);
    descriptor: (I)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // int arg
         0: .line 101
            aload 0 /* this */
            iload 1 /* arg */
            i2l
            invokeinterface io.vertx.redis.client.Request.arg:(J)Lio/vertx/redis/client/Request;
            pop
         1: .line 102
            aload 0 /* this */
            areturn
        end local 1 // int arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/redis/client/Request;
            0    2     1   arg  I
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(short);
    descriptor: (S)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // short arg
         0: .line 112
            aload 0 /* this */
            iload 1 /* arg */
            i2l
            invokeinterface io.vertx.redis.client.Request.arg:(J)Lio/vertx/redis/client/Request;
            pop
         1: .line 113
            aload 0 /* this */
            areturn
        end local 1 // short arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/redis/client/Request;
            0    2     1   arg  S
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(byte);
    descriptor: (B)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // byte arg
         0: .line 123
            aload 0 /* this */
            iload 1 /* arg */
            i2l
            invokeinterface io.vertx.redis.client.Request.arg:(J)Lio/vertx/redis/client/Request;
            pop
         1: .line 124
            aload 0 /* this */
            areturn
        end local 1 // byte arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/redis/client/Request;
            0    2     1   arg  B
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(boolean);
    descriptor: (Z)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // boolean arg
         0: .line 133
            aload 0 /* this */
            iload 1 /* arg */
            ifeq 1
            lconst_1
            goto 2
      StackMap locals:
      StackMap stack: io.vertx.redis.client.Request
         1: lconst_0
      StackMap locals: io.vertx.redis.client.Request int
      StackMap stack: io.vertx.redis.client.Request long
         2: invokeinterface io.vertx.redis.client.Request.arg:(J)Lio/vertx/redis/client/Request;
            pop
         3: .line 134
            aload 0 /* this */
            areturn
        end local 1 // boolean arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/redis/client/Request;
            0    4     1   arg  Z
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   

  public abstract io.vertx.redis.client.Request nullArg();
    descriptor: ()Lio/vertx/redis/client/Request;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()

  public abstract io.vertx.redis.client.Command command();
    descriptor: ()Lio/vertx/redis/client/Command;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
}
SourceFile: "Request.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()