Exemple #1
0
 /// <summary>
 /// Adds a new <see cref="FileEvent"/> at the end of the queue.
 /// </summary>
 /// <param name="fileEvent"></param>
 public void Add(FileEvent fileEvent)
 {
     this.items.Add(fileEvent);
     this.AggregateNewlyAdded(this.items.Count - 1);
 }