public class io.vertx.ext.jdbc.impl.actions.StreamQuery extends io.vertx.ext.jdbc.impl.actions.AbstractJDBCAction<io.vertx.ext.sql.SQLRowStream>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.jdbc.impl.actions.StreamQuery
  super_class: io.vertx.ext.jdbc.impl.actions.AbstractJDBCAction
{
  private static final int DEFAULT_ROW_STREAM_FETCH_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 128

  private final java.lang.String sql;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.json.JsonArray in;
    descriptor: Lio/vertx/core/json/JsonArray;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.impl.TaskQueue statementsQueue;
    descriptor: Lio/vertx/core/impl/TaskQueue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.vertx.core.Vertx, io.vertx.ext.jdbc.impl.actions.JDBCStatementHelper, io.vertx.ext.sql.SQLOptions, io.vertx.core.impl.ContextInternal, io.vertx.core.impl.TaskQueue, java.lang.String, io.vertx.core.json.JsonArray);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/ext/jdbc/impl/actions/JDBCStatementHelper;Lio/vertx/ext/sql/SQLOptions;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/impl/TaskQueue;Ljava/lang/String;Lio/vertx/core/json/JsonArray;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=8
        start local 0 // io.vertx.ext.jdbc.impl.actions.StreamQuery this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.ext.jdbc.impl.actions.JDBCStatementHelper helper
        start local 3 // io.vertx.ext.sql.SQLOptions options
        start local 4 // io.vertx.core.impl.ContextInternal ctx
        start local 5 // io.vertx.core.impl.TaskQueue statementsQueue
        start local 6 // java.lang.String sql
        start local 7 // io.vertx.core.json.JsonArray in
         0: .line 43
            aload 0 /* this */
            aload 1 /* vertx */
            aload 2 /* helper */
            aload 3 /* options */
            aload 4 /* ctx */
            invokespecial io.vertx.ext.jdbc.impl.actions.AbstractJDBCAction.<init>:(Lio/vertx/core/Vertx;Lio/vertx/ext/jdbc/impl/actions/JDBCStatementHelper;Lio/vertx/ext/sql/SQLOptions;Lio/vertx/core/impl/ContextInternal;)V
         1: .line 44
            aload 0 /* this */
            aload 6 /* sql */
            putfield io.vertx.ext.jdbc.impl.actions.StreamQuery.sql:Ljava/lang/String;
         2: .line 45
            aload 0 /* this */
            aload 7 /* in */
            putfield io.vertx.ext.jdbc.impl.actions.StreamQuery.in:Lio/vertx/core/json/JsonArray;
         3: .line 46
            aload 0 /* this */
            aload 5 /* statementsQueue */
            putfield io.vertx.ext.jdbc.impl.actions.StreamQuery.statementsQueue:Lio/vertx/core/impl/TaskQueue;
         4: .line 47
            return
        end local 7 // io.vertx.core.json.JsonArray in
        end local 6 // java.lang.String sql
        end local 5 // io.vertx.core.impl.TaskQueue statementsQueue
        end local 4 // io.vertx.core.impl.ContextInternal ctx
        end local 3 // io.vertx.ext.sql.SQLOptions options
        end local 2 // io.vertx.ext.jdbc.impl.actions.JDBCStatementHelper helper
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.ext.jdbc.impl.actions.StreamQuery this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lio/vertx/ext/jdbc/impl/actions/StreamQuery;
            0    5     1            vertx  Lio/vertx/core/Vertx;
            0    5     2           helper  Lio/vertx/ext/jdbc/impl/actions/JDBCStatementHelper;
            0    5     3          options  Lio/vertx/ext/sql/SQLOptions;
            0    5     4              ctx  Lio/vertx/core/impl/ContextInternal;
            0    5     5  statementsQueue  Lio/vertx/core/impl/TaskQueue;
            0    5     6              sql  Ljava/lang/String;
            0    5     7               in  Lio/vertx/core/json/JsonArray;
    MethodParameters:
                 Name  Flags
      vertx            
      helper           
      options          
      ctx              
      statementsQueue  
      sql              
      in               

  public io.vertx.ext.sql.SQLRowStream execute(java.sql.Connection);
    descriptor: (Ljava/sql/Connection;)Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=2
        start local 0 // io.vertx.ext.jdbc.impl.actions.StreamQuery this
        start local 1 // java.sql.Connection conn
         0: .line 51
            aconst_null
            astore 2 /* st */
        start local 2 // java.sql.PreparedStatement st
         1: .line 54
            aload 1 /* conn */
            aload 0 /* this */
            getfield io.vertx.ext.jdbc.impl.actions.StreamQuery.sql:Ljava/lang/String;
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;)Ljava/sql/PreparedStatement;
            astore 2 /* st */
         2: .line 56
            aload 0 /* this */
            aload 2 /* st */
            invokevirtual io.vertx.ext.jdbc.impl.actions.StreamQuery.applyStatementOptions:(Ljava/sql/Statement;)V
         3: .line 58
            aload 0 /* this */
            getfield io.vertx.ext.jdbc.impl.actions.StreamQuery.helper:Lio/vertx/ext/jdbc/impl/actions/JDBCStatementHelper;
            aload 2 /* st */
            aload 0 /* this */
            getfield io.vertx.ext.jdbc.impl.actions.StreamQuery.in:Lio/vertx/core/json/JsonArray;
            invokevirtual io.vertx.ext.jdbc.impl.actions.JDBCStatementHelper.fillStatement:(Ljava/sql/PreparedStatement;Lio/vertx/core/json/JsonArray;)V
         4: .line 59
            aconst_null
            astore 3 /* rs */
        start local 3 // java.sql.ResultSet rs
         5: .line 62
            aload 2 /* st */
            invokeinterface java.sql.PreparedStatement.executeQuery:()Ljava/sql/ResultSet;
            astore 3 /* rs */
         6: .line 66
            aload 0 /* this */
            getfield io.vertx.ext.jdbc.impl.actions.StreamQuery.options:Lio/vertx/ext/sql/SQLOptions;
            ifnull 9
            aload 0 /* this */
            getfield io.vertx.ext.jdbc.impl.actions.StreamQuery.options:Lio/vertx/ext/sql/SQLOptions;
            invokevirtual io.vertx.ext.sql.SQLOptions.getFetchSize:()I
            ifle 9
         7: .line 67
            aload 0 /* this */
            getfield io.vertx.ext.jdbc.impl.actions.StreamQuery.options:Lio/vertx/ext/sql/SQLOptions;
            invokevirtual io.vertx.ext.sql.SQLOptions.getFetchSize:()I
            istore 4 /* fetchSize */
        start local 4 // int fetchSize
         8: .line 68
            goto 10
        end local 4 // int fetchSize
         9: .line 69
      StackMap locals: java.sql.PreparedStatement java.sql.ResultSet
      StackMap stack:
            sipush 128
            istore 4 /* fetchSize */
        start local 4 // int fetchSize
        10: .line 72
      StackMap locals: int
      StackMap stack:
            new io.vertx.ext.jdbc.impl.actions.JDBCSQLRowStream
            dup
            aload 0 /* this */
            getfield io.vertx.ext.jdbc.impl.actions.StreamQuery.ctx:Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            getfield io.vertx.ext.jdbc.impl.actions.StreamQuery.statementsQueue:Lio/vertx/core/impl/TaskQueue;
            aload 2 /* st */
            aload 3 /* rs */
            iload 4 /* fetchSize */
            invokespecial io.vertx.ext.jdbc.impl.actions.JDBCSQLRowStream.<init>:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/impl/TaskQueue;Ljava/sql/Statement;Ljava/sql/ResultSet;I)V
        11: areturn
        end local 4 // int fetchSize
        12: .line 73
      StackMap locals: io.vertx.ext.jdbc.impl.actions.StreamQuery java.sql.Connection java.sql.PreparedStatement java.sql.ResultSet
      StackMap stack: java.sql.SQLException
            astore 4 /* e */
        start local 4 // java.sql.SQLException e
        13: .line 74
            aload 3 /* rs */
            ifnull 15
        14: .line 75
            aload 3 /* rs */
            invokeinterface java.sql.ResultSet.close:()V
        15: .line 77
      StackMap locals: java.sql.SQLException
      StackMap stack:
            aload 4 /* e */
            athrow
        end local 4 // java.sql.SQLException e
        end local 3 // java.sql.ResultSet rs
        16: .line 79
      StackMap locals: io.vertx.ext.jdbc.impl.actions.StreamQuery java.sql.Connection java.sql.PreparedStatement
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
        17: .line 80
            aload 2 /* st */
            ifnull 19
        18: .line 81
            aload 2 /* st */
            invokeinterface java.sql.PreparedStatement.close:()V
        19: .line 83
      StackMap locals: java.sql.SQLException
      StackMap stack:
            aload 3 /* e */
            athrow
        end local 3 // java.sql.SQLException e
        end local 2 // java.sql.PreparedStatement st
        end local 1 // java.sql.Connection conn
        end local 0 // io.vertx.ext.jdbc.impl.actions.StreamQuery this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lio/vertx/ext/jdbc/impl/actions/StreamQuery;
            0   20     1       conn  Ljava/sql/Connection;
            1   20     2         st  Ljava/sql/PreparedStatement;
            5   16     3         rs  Ljava/sql/ResultSet;
            8    9     4  fetchSize  I
           10   12     4  fetchSize  I
           13   16     4          e  Ljava/sql/SQLException;
           17   20     3          e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           5    11      12  Class java.sql.SQLException
           1    11      16  Class java.sql.SQLException
          12    16      16  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      conn  

  protected java.lang.String name();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.jdbc.impl.actions.StreamQuery this
         0: .line 89
            ldc "stream"
            areturn
        end local 0 // io.vertx.ext.jdbc.impl.actions.StreamQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/jdbc/impl/actions/StreamQuery;

  public java.lang.Object execute(java.sql.Connection);
    descriptor: (Ljava/sql/Connection;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.jdbc.impl.actions.StreamQuery.execute:(Ljava/sql/Connection;)Lio/vertx/ext/sql/SQLRowStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.sql.SQLException
}
Signature: Lio/vertx/ext/jdbc/impl/actions/AbstractJDBCAction<Lio/vertx/ext/sql/SQLRowStream;>;
SourceFile: "StreamQuery.java"