Class LegacySQLCollector

java.lang.Object
io.github.zero88.jooqx.reactivex.LegacySQLCollector

public class LegacySQLCollector extends Object
Represents for Legacy SQL result set collector

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

  • Field Details

    • __TYPE_ARG

      public static final io.vertx.lang.rx.TypeArg<LegacySQLCollector> __TYPE_ARG
  • Constructor Details

    • LegacySQLCollector

      public LegacySQLCollector(LegacySQLCollector delegate)
    • LegacySQLCollector

      public LegacySQLCollector(Object delegate)
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getDelegate

      public LegacySQLCollector getDelegate()
    • create

      public static LegacySQLCollector create()
    • batchResultSize

      public int batchResultSize(List<Integer> batchResult)
    • collect

      public <ROW, RESULT> RESULT collect(io.vertx.ext.sql.ResultSet resultSet, SQLResultAdapter<ROW,RESULT> adapter, org.jooq.DSLContext dslContext, DataTypeMapperRegistry registry)
      Collect result set to an expectation result that defines in SQL result adapter
      Parameters:
      resultSet - the result set
      adapter - the SQL result adapter
      dslContext - the DSL context
      registry - the data type registry
      Returns:
      an expectation result
    • collect

      public BlockResult collect(io.vertx.ext.sql.ResultSet multipleResultSet, List<SQLResultAdapter> adapters, org.jooq.DSLContext dslContext, DataTypeMapperRegistry registry)
      Collect multiple result set to block result
      Parameters:
      multipleResultSet - multiple result set
      adapters - the adapters
      dslContext - the DSL context
      registry - the data type registry
      Returns:
      a Block result
    • newInstance

      public static LegacySQLCollector newInstance(LegacySQLCollector arg)