Save methods
This is the collection of save methods within the Sqlite3Persister
interface. There are 4 save methods in total.
isAutoSaving
The isAutoSaving
method lets you find out if the Persister
is currently automatically saving its content.
save
The save
method takes data from the Store
with which the Persister
is associated and persists it into storage, once.
startAutoSave
The save
method takes data from the Store
with which the Persister
is associated and persists it into storage, once, and then continuously.
stopAutoSave
The stopAutoSave
method stops the automatic save of data to storage previously started with the startAutoSave
method.