| IDataManagerBackgroundReloadSave Method |
Recommended instead of other Reload and Save methods when quickly saving a single or small amount of values in the data. Completely avoids Dropbox, Google Drive, etc. sync issues by making sure that all changed data is loaded from disk before making the specified changes.
Namespace: Unbroken.LaunchBox.Plugins.DataAssembly: Unbroken.LaunchBox.Plugins (in Unbroken.LaunchBox.Plugins.dll) Version: 13.5.0.0
XMLNS for XAML: Not mapped to an xmlns.
Syntax void BackgroundReloadSave(
Action changes
)
Sub BackgroundReloadSave (
changes As Action
)
void BackgroundReloadSave(
Action^ changes
)
abstract BackgroundReloadSave :
changes : Action -> unit
Parameters
- changes Action
- The specified changes to make to the data. A method or an inline expression may be provided here that changes the data as needed after reloading any necessary data from disk, and before saving the new values to disk.
See Also