Handle() public method

Observes content change events and if they effect exiting entries, updates to storage are executed. If an existing entry is not ignored anymore a crawl sync is started.
public Handle ( ISyncEvent e ) : bool
e ISyncEvent The content change events to be observed.
return bool
 public void DetectionIgnoresNonContentChangeEvents() {
     this.SetUpMocks();
     var underTest = new IgnoreFlagChangeDetection(this.ignoreStorage.Object, this.matcher.Object, this.queue.Object);
     Assert.That(underTest.Handle(Mock.Of<ISyncEvent>()), Is.False);
 }