OutboxRepository
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract override fun <S : OutboxItemEntity> findAll(example: Example<S>, sort: Sort): MutableList<S>
Link copied to clipboard
abstract fun findAllByGroupIdInAndStatusNot(groupIds: Set<String>, status: OutboxStatus): List<OutboxItemEntity>
Link copied to clipboard
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)
Link copied to clipboard
@Lock(value = LockModeType.PESSIMISTIC_WRITE)
@QueryHints(value = [QueryHint(value = "100", name = "jakarta.persistence.lock.timeout") ] )
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard