diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-07 14:53:58 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-07 14:53:58 +0200 |
| commit | bd63d7d2f7769e5534fb9a58d97358564c2cb674 (patch) | |
| tree | d4c990b02d5b0678e8133a73b30f474dd1b3b428 /Software/Visual_Studio/Tango.Synchronization/IDBComparer.cs | |
| parent | 6e082b1d9d7b4c5888e7e7345e148eb944b8c624 (diff) | |
| download | Tango-bd63d7d2f7769e5534fb9a58d97358564c2cb674.tar.gz Tango-bd63d7d2f7769e5534fb9a58d97358564c2cb674.zip | |
Implemented progress text on DB Comparers instead of custom logger.
Diffstat (limited to 'Software/Visual_Studio/Tango.Synchronization/IDBComparer.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Synchronization/IDBComparer.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Synchronization/IDBComparer.cs b/Software/Visual_Studio/Tango.Synchronization/IDBComparer.cs index 05a955002..3d0ffc6e0 100644 --- a/Software/Visual_Studio/Tango.Synchronization/IDBComparer.cs +++ b/Software/Visual_Studio/Tango.Synchronization/IDBComparer.cs @@ -13,6 +13,11 @@ namespace Tango.Synchronization public interface IDBComparer : IDisposable { /// <summary> + /// Used to notify about the comparer progress using text messages. + /// </summary> + event EventHandler<String> Progress; + + /// <summary> /// Performs a database comparison and returns a set of differences. /// </summary> /// <returns></returns> |
