Package io.namastack.springoutbox
Interface OutboxRecordStatusRepository
-
- All Implemented Interfaces:
public interface OutboxRecordStatusRepositoryRepository interface for querying outbox record status statistics.
Provides methods for retrieving metrics and counts based on outbox record status.
- Since:
0.1.0
Roland Beisel
-
-
Method Summary
Modifier and Type Method Description abstract LongcountByStatus(OutboxRecordStatus status)Counts the number of outbox records with the specified status. -
-
Method Detail
-
countByStatus
abstract Long countByStatus(OutboxRecordStatus status)
Counts the number of outbox records with the specified status.
- Parameters:
status- The status to count records for- Returns:
The number of records with the given status
-
-
-
-