Package-level declarations

Types

Link copied to clipboard

Reads every entry from the persistent flat (plainDataBase()) local database — backs GetData's fullAccessMode() over plainDataBase(). Reachable via get<GetAllPlainDataUseCase>().

Link copied to clipboard

Reads several entries at once from the persistent flat (plainDataBase()) local database — backs GetData's batchAccessMode(...) over plainDataBase(). Reachable via get<GetPlainDataByIdsUseCase>().

Link copied to clipboard

Reads a single entry from the persistent flat (plainDataBase()) local database — backs GetData's singleAccessMode(dataKey) over plainDataBase(). Reachable via get<GetPlainDataUseCase>().

Link copied to clipboard

Deletes several entries at once from the persistent flat (plainDataBase()) local database — backs RemoveData targeting plainDataBase() with a batch of keys. Reachable via get<RemovePlainDataByIdsUseCase>().

Link copied to clipboard

Deletes a single entry from the persistent flat (plainDataBase()) local database — backs RemoveData targeting plainDataBase() with a single key. Reachable via get<RemovePlainDataUseCase>().

Link copied to clipboard

Writes a single entry into the persistent flat (plainDataBase()) local database — backs UpdateData targeting plainDataBase(). Reachable via get<UpdatePlainDataUseCase>().

Link copied to clipboard

Clears every entry from the persistent flat (plainDataBase()) local database — backs RemoveData's fullAccessMode() over plainDataBase(). Reachable via get<WipePlainDataUseCase>().