From 8841728780438444bf51f1a2c3b0d961e49908d2 Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Tue, 5 Mar 2019 18:52:47 -0500 Subject: Change dependencies and add back suspensions --- app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt | 8 ++++---- app/src/main/kotlin/com/pitchedapps/frost/db/FbTabsDb.kt | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'app/src/main/kotlin/com/pitchedapps/frost/db') diff --git a/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt b/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt index 0b8283fd..9deb57da 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt @@ -60,16 +60,16 @@ data class CookieEntity( interface CookieDao { @Query("SELECT * FROM cookies") - fun selectAll(): List + suspend fun selectAll(): List @Query("SELECT * FROM cookies WHERE id = :id") - fun selectById(id: Long): CookieEntity? + suspend fun selectById(id: Long): CookieEntity? @Insert(onConflict = OnConflictStrategy.REPLACE) - fun insertCookie(cookie: CookieEntity) + suspend fun insertCookie(cookie: CookieEntity) @Query("DELETE FROM cookies WHERE id = :id") - fun deleteById(id: Long) + suspend fun deleteById(id: Long) } @Database(version = CookiesDb.VERSION) diff --git a/app/src/main/kotlin/com/pitchedapps/frost/db/FbTabsDb.kt b/app/src/main/kotlin/com/pitchedapps/frost/db/FbTabsDb.kt index 4fc38ec9..ff64f5eb 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/db/FbTabsDb.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/db/FbTabsDb.kt @@ -45,16 +45,16 @@ data class FbTabEntity(@androidx.room.PrimaryKey var position: Int, var tab: FbI interface FbTabDao { @Query("SELECT * FROM tabs ORDER BY position ASC") - fun _selectAll(): List + suspend fun _selectAll(): List @Query("DELETE FROM tabs") - fun _deleteAll() + suspend fun _deleteAll() @Insert(onConflict = OnConflictStrategy.REPLACE) - fun _insertAll(items: List) + suspend fun _insertAll(items: List) @Transaction - fun _save(items: List) { + suspend fun _save(items: List) { _deleteAll() _insertAll(items) } -- cgit v1.2.3