示例#1
0
 public SampleAddedItemHandler(ItemAddedNotifier <double> notifier)
     : base(notifier)
 {
 }
示例#2
0
 public ItemAddedLastTimeStamped(ItemAddedNotifier <T> notifier)
 {
     this.notifier              = notifier;
     this.notifier.OnItemAdded += UpdateLastNotificationOnItemAdded;
     this.lastNotification      = DateTime.MinValue;
 }
示例#3
0
 public AddedItemHandler(ItemAddedNotifier <T> notifier)
 {
     this.notifier              = notifier;
     this.notifier.OnItemAdded += new ItemAddedNotification <T>(OnItemAdded);
 }