Beispiel #1
0
 public virtual void Stopped()
 {
     Log.D(Database.Tag, "change tracker in stopped");
     if (client != null)
     {
         Log.D(Database.Tag, "posting stopped");
         client.ChangeTrackerStopped(this);
     }
     client = null;
     Log.D(Database.Tag, "change tracker client should be null now");
 }
 public void Stopped()
 {
     Log.D(Tag, this + ": change tracker in stopped");
     if (client != null)
     {
         Log.D(Tag, this + ": posting stopped");
         client.ChangeTrackerStopped(this);
     }
     client = null;
     Log.D(Tag, this + ": change tracker client should be null now");
 }