diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-14 13:19:03 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-14 13:19:03 +0200 |
| commit | d1fa1f1a2e26469a6bbb5b82ab614079beffcb52 (patch) | |
| tree | 5823e82075a6bd9c932457f79a6269395d45fe23 /Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs | |
| parent | dd4560b79e305772debf48cc76c9ba67af61f259 (diff) | |
| download | Tango-d1fa1f1a2e26469a6bbb5b82ab614079beffcb52.tar.gz Tango-d1fa1f1a2e26469a6bbb5b82ab614079beffcb52.zip | |
Added code comments for:
Synchronization.
Diffstat (limited to 'Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs b/Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs index 6082db15b..2262796b9 100644 --- a/Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs +++ b/Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs @@ -6,9 +6,18 @@ using System.Threading.Tasks; namespace Tango.Synchronization { + /// <summary> + /// Represents a table synchronization configuration. + /// </summary> public enum SyncConfiguration { + /// <summary> + /// Removes all rows in the target DB and inserts all rows from source. + /// </summary> OverwriteLocal, + /// <summary> + /// Synchronize (Insert, Update) rows by LAST_UPDATED field. + /// </summary> Synchronize, } } |
