public interface io.vertx.mysqlclient.MySQLConnection extends io.vertx.sqlclient.SqlConnection
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.mysqlclient.MySQLConnection
  super_class: java.lang.Object
{
  public static void connect(io.vertx.core.Vertx, io.vertx.mysqlclient.MySQLConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.mysqlclient.MySQLConnection>>);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/mysqlclient/MySQLConnectOptions;Lio/vertx/core/Handler;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // io.vertx.mysqlclient.MySQLConnectOptions connectOptions
        start local 2 // io.vertx.core.Handler handler
         0: .line 53
            aload 0 /* vertx */
            aload 1 /* connectOptions */
            invokestatic io.vertx.mysqlclient.MySQLConnection.connect:(Lio/vertx/core/Vertx;Lio/vertx/mysqlclient/MySQLConnectOptions;)Lio/vertx/core/Future;
            astore 3 /* fut */
        start local 3 // io.vertx.core.Future fut
         1: .line 54
            aload 2 /* handler */
            ifnull 3
         2: .line 55
            aload 3 /* fut */
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         3: .line 57
      StackMap locals: io.vertx.core.Future
      StackMap stack:
            return
        end local 3 // io.vertx.core.Future fut
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.mysqlclient.MySQLConnectOptions connectOptions
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0           vertx  Lio/vertx/core/Vertx;
            0    4     1  connectOptions  Lio/vertx/mysqlclient/MySQLConnectOptions;
            0    4     2         handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/mysqlclient/MySQLConnection;>;>;
            1    4     3             fut  Lio/vertx/core/Future<Lio/vertx/mysqlclient/MySQLConnection;>;
    Signature: (Lio/vertx/core/Vertx;Lio/vertx/mysqlclient/MySQLConnectOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/mysqlclient/MySQLConnection;>;>;)V
    MethodParameters:
                Name  Flags
      vertx           
      connectOptions  
      handler         

  public static io.vertx.core.Future<io.vertx.mysqlclient.MySQLConnection> connect(io.vertx.core.Vertx, io.vertx.mysqlclient.MySQLConnectOptions);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/mysqlclient/MySQLConnectOptions;)Lio/vertx/core/Future;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // io.vertx.mysqlclient.MySQLConnectOptions connectOptions
         0: .line 63
            aload 0 /* vertx */
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            checkcast io.vertx.core.impl.ContextInternal
            aload 1 /* connectOptions */
            invokestatic io.vertx.mysqlclient.impl.MySQLConnectionImpl.connect:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/mysqlclient/MySQLConnectOptions;)Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.mysqlclient.MySQLConnectOptions connectOptions
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0           vertx  Lio/vertx/core/Vertx;
            0    1     1  connectOptions  Lio/vertx/mysqlclient/MySQLConnectOptions;
    Signature: (Lio/vertx/core/Vertx;Lio/vertx/mysqlclient/MySQLConnectOptions;)Lio/vertx/core/Future<Lio/vertx/mysqlclient/MySQLConnection;>;
    MethodParameters:
                Name  Flags
      vertx           
      connectOptions  

  public static void connect(io.vertx.core.Vertx, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.mysqlclient.MySQLConnection>>);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // java.lang.String connectionUri
        start local 2 // io.vertx.core.Handler handler
         0: .line 70
            aload 0 /* vertx */
            aload 1 /* connectionUri */
            invokestatic io.vertx.mysqlclient.MySQLConnectOptions.fromUri:(Ljava/lang/String;)Lio/vertx/mysqlclient/MySQLConnectOptions;
            aload 2 /* handler */
            invokestatic io.vertx.mysqlclient.MySQLConnection.connect:(Lio/vertx/core/Vertx;Lio/vertx/mysqlclient/MySQLConnectOptions;Lio/vertx/core/Handler;)V
         1: .line 71
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String connectionUri
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0          vertx  Lio/vertx/core/Vertx;
            0    2     1  connectionUri  Ljava/lang/String;
            0    2     2        handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/mysqlclient/MySQLConnection;>;>;
    Signature: (Lio/vertx/core/Vertx;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/mysqlclient/MySQLConnection;>;>;)V
    MethodParameters:
               Name  Flags
      vertx          
      connectionUri  
      handler        

  public static io.vertx.core.Future<io.vertx.mysqlclient.MySQLConnection> connect(io.vertx.core.Vertx, java.lang.String);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // java.lang.String connectionUri
         0: .line 77
            aload 0 /* vertx */
            aload 1 /* connectionUri */
            invokestatic io.vertx.mysqlclient.MySQLConnectOptions.fromUri:(Ljava/lang/String;)Lio/vertx/mysqlclient/MySQLConnectOptions;
            invokestatic io.vertx.mysqlclient.MySQLConnection.connect:(Lio/vertx/core/Vertx;Lio/vertx/mysqlclient/MySQLConnectOptions;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String connectionUri
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0          vertx  Lio/vertx/core/Vertx;
            0    1     1  connectionUri  Ljava/lang/String;
    Signature: (Lio/vertx/core/Vertx;Ljava/lang/String;)Lio/vertx/core/Future<Lio/vertx/mysqlclient/MySQLConnection;>;
    MethodParameters:
               Name  Flags
      vertx          
      connectionUri  

  public abstract io.vertx.mysqlclient.MySQLConnection prepare(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.sqlclient.PreparedStatement>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/PreparedStatement;>;>;)Lio/vertx/mysqlclient/MySQLConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      sql      
      handler  

  public abstract io.vertx.mysqlclient.MySQLConnection exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/mysqlclient/MySQLConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.mysqlclient.MySQLConnection closeHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/mysqlclient/MySQLConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.mysqlclient.MySQLConnection ping(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/mysqlclient/MySQLConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.Future<java.lang.Void> ping();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public abstract io.vertx.mysqlclient.MySQLConnection specifySchema(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/mysqlclient/MySQLConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
            Name  Flags
      schemaName  
      handler     

  public abstract io.vertx.core.Future<java.lang.Void> specifySchema(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
            Name  Flags
      schemaName  

  public abstract io.vertx.mysqlclient.MySQLConnection getInternalStatistics(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.String>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;)Lio/vertx/mysqlclient/MySQLConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.Future<java.lang.String> getInternalStatistics();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lio/vertx/core/Future<Ljava/lang/String;>;

  public abstract io.vertx.mysqlclient.MySQLConnection setOption(io.vertx.mysqlclient.MySQLSetOption, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/mysqlclient/MySQLSetOption;Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/mysqlclient/MySQLSetOption;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/mysqlclient/MySQLConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      option   
      handler  

  public abstract io.vertx.core.Future<java.lang.Void> setOption(io.vertx.mysqlclient.MySQLSetOption);
    descriptor: (Lio/vertx/mysqlclient/MySQLSetOption;)Lio/vertx/core/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/mysqlclient/MySQLSetOption;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
        Name  Flags
      option  

  public abstract io.vertx.mysqlclient.MySQLConnection resetConnection(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/mysqlclient/MySQLConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.Future<java.lang.Void> resetConnection();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public abstract io.vertx.mysqlclient.MySQLConnection debug(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/mysqlclient/MySQLConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.Future<java.lang.Void> debug();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public abstract io.vertx.mysqlclient.MySQLConnection changeUser(io.vertx.mysqlclient.MySQLAuthOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/mysqlclient/MySQLAuthOptions;Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/mysqlclient/MySQLAuthOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/mysqlclient/MySQLConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      options  
      handler  

  public abstract io.vertx.core.Future<java.lang.Void> changeUser(io.vertx.mysqlclient.MySQLAuthOptions);
    descriptor: (Lio/vertx/mysqlclient/MySQLAuthOptions;)Lio/vertx/core/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/mysqlclient/MySQLAuthOptions;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.sqlclient.SqlConnection closeHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface io.vertx.mysqlclient.MySQLConnection.closeHandler:(Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection prepare(java.lang.String, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokeinterface io.vertx.mysqlclient.MySQLConnection.prepare:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface io.vertx.mysqlclient.MySQLConnection.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/mysqlclient/MySQLConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "MySQLConnection.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()