ContextRepository

Load a context

Inheritors

Functions

Link copied to clipboard
abstract fun create(): Context

Create an empty context with a generated ID.

Link copied to clipboard
abstract fun createWithId(id: String): Context

Create an empty context with the specified ID. Use this when you want deterministic context IDs (e.g., "userId-contextName").

Link copied to clipboard
abstract fun delete(context: Context)
Link copied to clipboard
abstract fun findById(id: String): Context?
Link copied to clipboard
abstract fun save(context: Context): Context