aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data/SynchronouseMode.cs
diff options
context:
space:
mode:
authorJan Sommer <jjs@joritos.de>2022-10-06 21:43:44 +0200
committerJan Sommer <jjs@joritos.de>2022-10-06 21:43:44 +0200
commit0b8faf5db41a73e6d87a37a9f344c8ea03c7ef4e (patch)
tree36b87d439f9ebe155cb0bae2843cec5c06494bb2 /Emby.Server.Implementations/Data/SynchronouseMode.cs
parent927fe33d3a0ec7f9e0fb568cfd423c6e8b966c9d (diff)
Fix minor warnings in Emby.Server.Implementations (#2149)
Diffstat (limited to 'Emby.Server.Implementations/Data/SynchronouseMode.cs')
-rw-r--r--Emby.Server.Implementations/Data/SynchronouseMode.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/Emby.Server.Implementations/Data/SynchronouseMode.cs b/Emby.Server.Implementations/Data/SynchronouseMode.cs
deleted file mode 100644
index cde524e2e..000000000
--- a/Emby.Server.Implementations/Data/SynchronouseMode.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-namespace Emby.Server.Implementations.Data;
-
-/// <summary>
-/// The disk synchronization mode, controls how aggressively SQLite will write data
-/// all the way out to physical storage.
-/// </summary>
-public enum SynchronousMode
-{
- /// <summary>
- /// SQLite continues without syncing as soon as it has handed data off to the operating system.
- /// </summary>
- Off = 0,
-
- /// <summary>
- /// SQLite database engine will still sync at the most critical moments.
- /// </summary>
- Normal = 1,
-
- /// <summary>
- /// SQLite database engine will use the xSync method of the VFS
- /// to ensure that all content is safely written to the disk surface prior to continuing.
- /// </summary>
- Full = 2,
-
- /// <summary>
- /// EXTRA synchronous is like FULL with the addition that the directory containing a rollback journal
- /// is synced after that journal is unlinked to commit a transaction in DELETE mode.
- /// </summary>
- Extra = 3
-}