EventRepository

Functions

Link copied to clipboard
abstract suspend fun deleteAll()
Link copied to clipboard
abstract suspend fun deleteAllOlderThan(date: Instant)
Link copied to clipboard
abstract fun getAll(): Flow<List<EventData>>
Link copied to clipboard
abstract fun getEventById(id: Long): Flow<EventData>
Link copied to clipboard
abstract suspend fun insert(eventData: EventData)
Link copied to clipboard
abstract fun search(query: String): Flow<List<EventData>>