![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.com.harmony.core.db.CacheQueries.kt Maven / Gradle / Ivy
package com.harmony.core.db
import com.squareup.sqldelight.Query
import com.squareup.sqldelight.Transacter
import kotlin.Any
import kotlin.ByteArray
import kotlin.String
import kotlin.Unit
public interface CacheQueries : Transacter {
public fun `value`(key: String, mapper: (key: String, value_: ByteArray) -> T): Query
public fun `value`(key: String): Query
public fun selectAll(mapper: (key: String, value_: ByteArray) -> T): Query
public fun selectAll(): Query
public fun delete(key: String): Unit
public fun insertOrUpdate(key: String, value_: ByteArray): Unit
public fun deleteAll(): Unit
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy