OneToManyAndroidRepo

class OneToManyAndroidRepo<Key, Value>(    tableName: String,     keyAsString: Key.() -> String,     valueAsString: Value.() -> String,     keyFromString: String.() -> Key,     valueFromString: String.() -> Value,     helper: SQLiteOpenHelper) : KeyValuesRepo<Key, Value>

Constructors

Link copied to clipboard
fun <Key, Value> OneToManyAndroidRepo(    tableName: String,     keyAsString: Key.() -> String,     valueAsString: Value.() -> String,     keyFromString: String.() -> Key,     valueFromString: String.() -> Value,     helper: SQLiteOpenHelper)

Functions

Link copied to clipboard
open suspend override fun add(toAdd: Map<Key, List<Value>>)
Link copied to clipboard
open suspend override fun clear(k: Key)
Link copied to clipboard
open suspend override fun clearWithValue(v: Value)
Link copied to clipboard
open suspend override fun contains(k: Key): Boolean
open suspend override fun contains(k: Key, v: Value): Boolean
Link copied to clipboard
open suspend override fun count(): Long
open suspend override fun count(k: Key): Long
Link copied to clipboard
open suspend override fun get(    k: Key,     pagination: Pagination,     reversed: Boolean): PaginationResult<Value>
Link copied to clipboard
open suspend fun getAll(reverseLists: Boolean = false): Map<Key, List<Value>>

WARNING!!! THIS METHOD PROBABLY IS NOT EFFICIENT, USE WITH CAUTION

open suspend fun getAll(k: Key, reversed: Boolean = false): List<Value>
Link copied to clipboard
open suspend override fun keys(pagination: Pagination, reversed: Boolean): PaginationResult<Key>
open suspend override fun keys(    v: Value,     pagination: Pagination,     reversed: Boolean): PaginationResult<Key>
Link copied to clipboard
open suspend override fun remove(toRemove: Map<Key, List<Value>>)
Link copied to clipboard
open suspend override fun set(toSet: Map<Key, List<Value>>)

Properties

Link copied to clipboard
open override val onDataCleared: Flow<Key>
Link copied to clipboard
open override val onNewValue: Flow<Pair<Key, Value>>
Link copied to clipboard
open override val onValueRemoved: Flow<Pair<Key, Value>>