All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.com.sceyt.chatuikit.persistence.dao.MarkerDao.kt Maven / Gradle / Ivy

package com.sceyt.chatuikit.persistence.dao

import androidx.room.Dao
import androidx.room.Insert
import androidx.room.OnConflictStrategy
import androidx.room.Query
import androidx.room.Transaction
import com.sceyt.chatuikit.persistence.entity.messages.MarkerEntity
import com.sceyt.chatuikit.persistence.entity.messages.MarkerWithUserDb

@Dao
interface MarkerDao {

    @Insert(onConflict = OnConflictStrategy.REPLACE)
    suspend fun insert(marker: MarkerEntity)

    @Insert(onConflict = OnConflictStrategy.REPLACE)
    suspend fun insertMany(marker: List)

    @Transaction
    @Query("select * from MarkerEntity where messageId =:messageId and name in (:names) " +
            "order by createdAt desc limit :limit offset :offset")
    suspend fun getMessageMarkers(messageId: Long, names: List, offset: Int, limit: Int): List
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy