EventDAO

interface EventDAO

Inheritors

Functions

Link copied to clipboard
abstract suspend fun deleteAllProcessedEvents()
Link copied to clipboard
abstract suspend fun deleteProcessedEventsBefore(id: Long)
Link copied to clipboard
abstract suspend fun getEventById(id: String): EventEntity?
Link copied to clipboard
abstract suspend fun insertEvents(events: List<NewEventEntity>)
Link copied to clipboard
abstract suspend fun markEventAsProcessed(eventId: String)
Link copied to clipboard
abstract suspend fun observeEvents(fromIdExclusive: Long): <Error class: unknown class><List<EventEntity>>
Link copied to clipboard
abstract suspend fun observeUnprocessedEvents(): <Error class: unknown class><List<EventEntity>>