Class MEntityDao

    • Constructor Detail

      • MEntityDao

        public MEntityDao​(org.jooq.Configuration configuration,
                          io.vertx.core.Vertx vertx)
        Parameters:
        configuration - The Configuration used for rendering and query execution. * @param vertx the vertx instance
    • Method Detail

      • findManyByIdentifier

        public io.vertx.core.Future<List<MEntity>> findManyByIdentifier​(Collection<String> values)
        Find records that have IDENTIFIER IN (values) asynchronously
      • findManyByIdentifier

        public io.vertx.core.Future<List<MEntity>> findManyByIdentifier​(Collection<String> values,
                                                                        int limit)
        Find records that have IDENTIFIER IN (values) asynchronously limited by the given limit
      • findManyByNamespace

        public io.vertx.core.Future<List<MEntity>> findManyByNamespace​(Collection<String> values)
        Find records that have NAMESPACE IN (values) asynchronously
      • findManyByNamespace

        public io.vertx.core.Future<List<MEntity>> findManyByNamespace​(Collection<String> values,
                                                                       int limit)
        Find records that have NAMESPACE IN (values) asynchronously limited by the given limit
      • findManyByName

        public io.vertx.core.Future<List<MEntity>> findManyByName​(Collection<String> values)
        Find records that have NAME IN (values) asynchronously
      • findManyByName

        public io.vertx.core.Future<List<MEntity>> findManyByName​(Collection<String> values,
                                                                  int limit)
        Find records that have NAME IN (values) asynchronously limited by the given limit
      • findManyByType

        public io.vertx.core.Future<List<MEntity>> findManyByType​(Collection<String> values)
        Find records that have TYPE IN (values) asynchronously
      • findManyByType

        public io.vertx.core.Future<List<MEntity>> findManyByType​(Collection<String> values,
                                                                  int limit)
        Find records that have TYPE IN (values) asynchronously limited by the given limit
      • findManyByTableName

        public io.vertx.core.Future<List<MEntity>> findManyByTableName​(Collection<String> values)
        Find records that have TABLE_NAME IN (values) asynchronously
      • findManyByTableName

        public io.vertx.core.Future<List<MEntity>> findManyByTableName​(Collection<String> values,
                                                                       int limit)
        Find records that have TABLE_NAME IN (values) asynchronously limited by the given limit
      • findManyByComments

        public io.vertx.core.Future<List<MEntity>> findManyByComments​(Collection<String> values)
        Find records that have COMMENTS IN (values) asynchronously
      • findManyByComments

        public io.vertx.core.Future<List<MEntity>> findManyByComments​(Collection<String> values,
                                                                      int limit)
        Find records that have COMMENTS IN (values) asynchronously limited by the given limit
      • findManyBySigma

        public io.vertx.core.Future<List<MEntity>> findManyBySigma​(Collection<String> values)
        Find records that have SIGMA IN (values) asynchronously
      • findManyBySigma

        public io.vertx.core.Future<List<MEntity>> findManyBySigma​(Collection<String> values,
                                                                   int limit)
        Find records that have SIGMA IN (values) asynchronously limited by the given limit
      • findManyByLanguage

        public io.vertx.core.Future<List<MEntity>> findManyByLanguage​(Collection<String> values)
        Find records that have LANGUAGE IN (values) asynchronously
      • findManyByLanguage

        public io.vertx.core.Future<List<MEntity>> findManyByLanguage​(Collection<String> values,
                                                                      int limit)
        Find records that have LANGUAGE IN (values) asynchronously limited by the given limit
      • findManyByActive

        public io.vertx.core.Future<List<MEntity>> findManyByActive​(Collection<Boolean> values)
        Find records that have ACTIVE IN (values) asynchronously
      • findManyByActive

        public io.vertx.core.Future<List<MEntity>> findManyByActive​(Collection<Boolean> values,
                                                                    int limit)
        Find records that have ACTIVE IN (values) asynchronously limited by the given limit
      • findManyByMetadata

        public io.vertx.core.Future<List<MEntity>> findManyByMetadata​(Collection<String> values)
        Find records that have METADATA IN (values) asynchronously
      • findManyByMetadata

        public io.vertx.core.Future<List<MEntity>> findManyByMetadata​(Collection<String> values,
                                                                      int limit)
        Find records that have METADATA IN (values) asynchronously limited by the given limit
      • findManyByCreatedAt

        public io.vertx.core.Future<List<MEntity>> findManyByCreatedAt​(Collection<LocalDateTime> values)
        Find records that have CREATED_AT IN (values) asynchronously
      • findManyByCreatedAt

        public io.vertx.core.Future<List<MEntity>> findManyByCreatedAt​(Collection<LocalDateTime> values,
                                                                       int limit)
        Find records that have CREATED_AT IN (values) asynchronously limited by the given limit
      • findManyByCreatedBy

        public io.vertx.core.Future<List<MEntity>> findManyByCreatedBy​(Collection<String> values)
        Find records that have CREATED_BY IN (values) asynchronously
      • findManyByCreatedBy

        public io.vertx.core.Future<List<MEntity>> findManyByCreatedBy​(Collection<String> values,
                                                                       int limit)
        Find records that have CREATED_BY IN (values) asynchronously limited by the given limit
      • findManyByUpdatedAt

        public io.vertx.core.Future<List<MEntity>> findManyByUpdatedAt​(Collection<LocalDateTime> values)
        Find records that have UPDATED_AT IN (values) asynchronously
      • findManyByUpdatedAt

        public io.vertx.core.Future<List<MEntity>> findManyByUpdatedAt​(Collection<LocalDateTime> values,
                                                                       int limit)
        Find records that have UPDATED_AT IN (values) asynchronously limited by the given limit
      • findManyByUpdatedBy

        public io.vertx.core.Future<List<MEntity>> findManyByUpdatedBy​(Collection<String> values)
        Find records that have UPDATED_BY IN (values) asynchronously
      • findManyByUpdatedBy

        public io.vertx.core.Future<List<MEntity>> findManyByUpdatedBy​(Collection<String> values,
                                                                       int limit)
        Find records that have UPDATED_BY IN (values) asynchronously limited by the given limit
      • queryExecutor

        public io.github.jklingsporn.vertx.jooq.classic.jdbc.JDBCClassicQueryExecutor<MEntityRecord,​MEntity,​String> queryExecutor()
        Specified by:
        queryExecutor in interface io.github.jklingsporn.vertx.jooq.shared.internal.GenericVertxDAO<MEntityRecord,​MEntity,​String,​io.vertx.core.Future<List<MEntity>>,​io.vertx.core.Future<MEntity>,​io.vertx.core.Future<Integer>,​io.vertx.core.Future<String>>
        Overrides:
        queryExecutor in class io.github.jklingsporn.vertx.jooq.shared.internal.AbstractVertxDAO<MEntityRecord,​MEntity,​String,​io.vertx.core.Future<List<MEntity>>,​io.vertx.core.Future<MEntity>,​io.vertx.core.Future<Integer>,​io.vertx.core.Future<String>>