/* * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details. */ package at.bitfire.davdroid.db import androidx.room.Dao import androidx.room.Insert import androidx.room.OnConflictStrategy import androidx.room.Query import kotlinx.coroutines.flow.Flow @Dao interface SyncStatsDao { @Insert(onConflict = OnConflictStrategy.REPLACE) suspend fun insertOrReplace(syncStats: SyncStats) @Query("SELECT * FROM syncstats WHERE collectionId=:id") fun getByCollectionIdFlow(id: Long): Flow> }