OutboxRepository

interface OutboxRepository : JpaRepository<OutboxItemEntity, Long>

Functions

Link copied to clipboard
abstract fun count(): Long
abstract fun <S : OutboxItemEntity> count(example: Example<S>): Long
Link copied to clipboard
abstract fun delete(entity: OutboxItemEntity)
Link copied to clipboard
abstract fun deleteAll()
abstract fun deleteAll(entities: MutableIterable<OutboxItemEntity>)
Link copied to clipboard
abstract fun deleteAllByDeleteAfterLessThanEqual(referenceTimestamp: Instant)
Link copied to clipboard
abstract fun deleteAllById(ids: MutableIterable<Long>)
Link copied to clipboard
Link copied to clipboard
abstract fun deleteAllInBatch()
Link copied to clipboard
abstract fun deleteById(id: Long)
Link copied to clipboard
Link copied to clipboard
abstract fun <S : OutboxItemEntity> exists(example: Example<S>): Boolean
Link copied to clipboard
abstract fun existsById(id: Long): Boolean
Link copied to clipboard
abstract override fun <S : OutboxItemEntity> findAll(example: Example<S>): MutableList<S>
abstract override fun <S : OutboxItemEntity> findAll(example: Example<S>, sort: Sort): MutableList<S>
abstract override fun findAll(): MutableList<OutboxItemEntity>
abstract override fun findAll(sort: Sort): MutableList<OutboxItemEntity>
abstract fun findAll(pageable: Pageable): Page<OutboxItemEntity>
abstract fun <S : OutboxItemEntity> findAll(example: Example<S>, pageable: Pageable): Page<S>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun <S : OutboxItemEntity, R : Any> findBy(example: Example<S>, queryFunction: Function<FluentQuery.FetchableFluentQuery<S>, R>): R
Link copied to clipboard
@Query(value = " select * from outbox_item where (status = :pendingStatus and next_run < :nextRunLessThan) or (status = :runningStatus and rerun_after < :rerunAfterLessThan) ", nativeQuery = true)
abstract fun findByFilter(pendingStatus: String, nextRunLessThan: Instant, runningStatus: String, rerunAfterLessThan: Instant): List<OutboxItemEntity>
Link copied to clipboard
@Lock(value = LockModeType.PESSIMISTIC_WRITE)
@QueryHints(value = [QueryHint(value = "100", name = "jakarta.persistence.lock.timeout")])
abstract override fun findById(id: Long): Optional<OutboxItemEntity>
Link copied to clipboard
abstract fun <S : OutboxItemEntity> findOne(example: Example<S>): Optional<S>
Link copied to clipboard
abstract fun flush()
Link copied to clipboard
abstract fun getById(id: Long): OutboxItemEntity
Link copied to clipboard
abstract fun getOne(id: Long): OutboxItemEntity
Link copied to clipboard
Link copied to clipboard
abstract fun <S : OutboxItemEntity> save(entity: S): S
Link copied to clipboard
abstract override fun <S : OutboxItemEntity> saveAll(entities: MutableIterable<S>): MutableList<S>
Link copied to clipboard
Link copied to clipboard
abstract fun <S : OutboxItemEntity> saveAndFlush(entity: S): S