Load methods
This is the collection of load methods within the FilePersister
interface. There are 4 load methods in total.
isAutoLoading
The isAutoLoading
method lets you find out if the Persister
is currently automatically loading its content.
load
The load
method gets persisted data from storage, and loads it into the Store
with which the Persister
is associated, once.
startAutoLoad
The startAutoLoad
method gets persisted data from storage, and loads it into the Store
with which the Persister
is associated, once, and then continuously.
stopAutoLoad
The stopAutoLoad
method stops the automatic loading of data from storage previously started with the startAutoLoad
method.