ensure restart save is exclusive to prevent save corruption

This commit is contained in:
zznty
2024-11-09 19:06:10 +07:00
parent 58340e0f5d
commit d15985e918
3 changed files with 8 additions and 3 deletions

View File

@@ -33,6 +33,11 @@
/// <summary>
/// The save operation timed out
/// </summary>
TimedOut = -5
TimedOut = -5,
/// <summary>
/// Another save operation is in progress
/// </summary>
ConcurrentSaveInProgress = -6
}
}