Snapshot

interface Snapshot : DBRead, Closeable

Functions

close
Link copied to clipboard
common
abstract fun close()
find
Link copied to clipboard
common
abstract fun <M : Any> find(type: KClass<M>, vararg options: Options.Find): DBRead.FindDsl<M>
findAll
Link copied to clipboard
common
abstract fun findAll(vararg options: Options.Find): Cursor<*>
get
Link copied to clipboard
common
abstract operator fun <M : Any> get(type: KClass<M>, key: Key<M>, vararg options: Options.Get): M?
getIndexesOf
Link copied to clipboard
common
abstract fun getIndexesOf(key: Key<*>): Set<String>
keyById
Link copied to clipboard
common
abstract fun <M : Any> keyById(type: KClass<M>, vararg id: Any): Key<M>
keyFrom
Link copied to clipboard
common
abstract fun <M : Any> keyFrom(model: M, vararg options: Options.Puts): Key<M>
keyFromB64
Link copied to clipboard
common
abstract fun <M : Any> keyFromB64(type: KClass<M>, b64: String): Key<M>