interface ExperimentStorage
(source)
Represents a location where experiments are stored locally on the device
abstract fun retrieve(): ExperimentsSnapshot
Reads experiments from disk |
|
abstract fun save(snapshot: ExperimentsSnapshot): Unit
Stores the given experiments to disk |
class FlatFileExperimentStorage : ExperimentStorage
Class which uses a flat JSON file as an experiment storage mechanism |