Click here to Skip to main content
Licence CPOL
First Posted 7 Sep 2011
Views 24,404
Downloads 1,186
Bookmarked 89 times

Enhanced ObservableCollection with ability to delay or disable notifications

By | 8 May 2012 | Article
Implements delayed or disabled INotifyCollectionChanged.

Introduction

MSDN describes ObservableCollection as a dynamic data collection which provides notifications when items get added, removed, or when the whole list is refreshed.

ObservableCollection is fully bindable. It implements both INotifyPropertyChanged and INotifyCollectionChanged, so whenever the collection is changed, appropriate notification events are fired off immediately and bound objects are notified and updated.

This scenario works in most cases but sometimes it would be beneficial to postpone notifications until later or temporarily disable them all together. For example, until a batch update is finished. This notification delay could increase performance as well as eliminate screen flicker of updated visuals. Unfortunately, the default implementation of ObservableCollection does not provide this functionality.

ObservableCollectionEx is designed to provide this missing functionality. ObservableCollectionEx is designed as a direct replacement for ObservableCollection, is completely code compatible with it, and also provides a way to delay or disable notifications.

Background

In order to postpone notifications, we have to temporarily reroute them to a holding place and fire them all once delay is no longer required. At the same time, we need to continue to provide normal behavior and notifications for other consumers of the collection which do not require delay.

This could be achieved if we have multiple objects acting like a shell and manipulating the same collection. One instance will contain the element’s container and be a host for all of the notification events which consumers will be subscribed to, and other instances of the shell will handle disabled and delayed events. These extra shells reference the same container but instead of firing events which consumer handlers attached to, they will call its own handlers which either collect these events or discard them.

The ObservableCollection implementation is based on a Collection which implements functionality, and ObservableCollection implements notifications. The Collection class is implemented as a shell around the IList interface. It contains a reference to a container which exposes the IList interface and manipulates this container through it. One of the constructors of the Collection class takes List as a parameter and allows this list to be a container for that Collection. This creates a way to have multiple Collection instances to manipulate the same container, which perfectly serves our purpose.

Unfortunately, this ability is lost in the ObservableCollection implementation. Instead of assigning IList to be a container for the instance, it creates a copy of that List and uses that copy to store elements. This limitation prevents us from inheriting from the ObservableCollection class.

ObservableCollectionEx is based on a Collection class as well, and implements exactly the same methods and properties that ObservableCollection does.

In addition to these members, ObservableCollectionEx exposes two methods to create disabled or delayed notification shells around the container. Methods of the shell created by DisableNotifications() produce no notifications on either INotifyPropertyChanged or INotifyCollectionChanged.

Calls to the methods of the shell created by DelayNorifications() produce no notifications until this instance goes out of scope or IDisposable.Dispose() has been called on it.

How it works

Except for a few performance tricks, ObservableCollectionEx behaves exactly as the ObservableCollection class. It uses Collection to perform its operations, notifies consumers via INotifyPropertyChanged and INotifyCollectionChanged, and creates a copy of the List if you pass it to a constructor.

The differences starts when the DelayNotifications() or DisableNotifications() methods are called. This method creates a new instance of the ObservableCollectionEx object and passes its constructor a reference to the original ObservableCollectionEx object, and the Boolean parameter that specifies if notifications are disabled or postponed. This new instance will have the same interface as the original, the same element’s container, but none of the consumer handlers attached to the CollectionChanged event. So when methods of this instance are called and events are fired, none of these are going anywhere but to temporary storage.

Once updates are done, and either this instance goes out of scope or Dispose() has been called, all of the collected events are combined into one and fired on CollectionChanged and PropertyChanged of the original object notifying all of the consumers about changes.

Implementation

Generally there are two ways to implement notification delays: Subclass ObservableCollection or create Extension Method which operates on regular ObservableCollection.  Creating extension method is attractive. It would allow adding delays to any observable collection without much code modifications.
But there are price to pay. In order for us to create desired behaviour we require access to two private members of the ObservableCollection class: List collection and PropertyChanged event. Using Reflection we could get to these members but it would not be very elegant solution. It would not be the fastest approach either.
Because of these reasons I’ve chosen to implement delays by inheriting from ObservableCollection but it ended up being not so easy. Several of key methods are not virtual and could not be just overridden. Working around these issues would decrease performance and portability so after long consideration I’ve decided to create class which adheres to the same interface signature as ObservableCollection and could be used as a strait replacement for it.

Using the code

The easiest way to include this class into your project is by installing the Nuget package available at this link.

ObservableCollectionEx should be used exactly as ObservableCollection. It could be instantiated and used in place of ObservableCollection, or it could be derived from it. No special treatment is required.

In order to postpone notifications, it is recommended to use the using() directive:

ObservableCollectionEx<T> target = new ObservableCollectionEx<T>();
using (ObservableCollectionEx<T> iDelayed = target.DelayNotifications())
{
  iDelayed.Add(item0);
  iDelayed.Add(item0);
  iDelayed.Add(item0);
}

Due to the design of notification arguments, it is not possible to combine different operations together. For example, it is not possible to Add and Remove elements on the same delayed instance unless Dispose() has been called in between these calls. Calling Dispose() will fire previously collected events and reinitialize operation.

ObservableCollectionEx<T> target = new ObservableCollectionEx<T>();
using (ObservableCollectionEx<T> iDelayed = target.DelayNotifications())
{
    iDelayed.Add(item0);
    iDelayed.Add(item0);
}
using (ObservableCollectionEx<T> iDelayed = target.DelayNotifications())
{
    iDelayed.Remove(item0);
    iDelayed.Remove(item0);
}
using (ObservableCollectionEx<T> iDelayed = target.DelayNotifications())
{
    iDelayed.Add(item0);
    iDelayed.Add(item0); 
    iDelayed.Dispose();
    iDelayed.Remove(item0);
    iDelayed.Remove(item0);
}

Performance

In general, both ObservableCollection and ObservableCollectionEx provide comparable performance. Testing has been done using an array of 10,000 unique objects. Both ObservableCollection and ObservableCollectionEx where initialized with this array to pre allocate storage so it is not affecting timing results. Application has been run about dozen times to let JIT to optimize the executable before the test results were collected.

The test consisted of 10,000 Add, Replace, and Remove operations. Timing has been collected using the Stopwatch class and presented in milliseconds.

ObservableCollectionEx/ObservableCollectionEx.png

The value on the left represents the number of milliseconds it took to complete the test (Add, Replace, and Remove). The value on the bottom specifies the number of notification subscribers (handlers added to the CollectionChanged event).

As you can see from the graph, the performance of the interface with disabled notifications does not depend on the subscribers. Due to several performance enhancements, ObservableCollectionEx performs slightly better than ObservableCollection regardless of the number of subscribers but it obviously loses the Disabled interface once there is more than one subscriber.

The performance of ObservableCollectionEx when notifications are delayed is different compared to the results described above. Since notification is called only once, it saves some time but it requires some extra processing to unwind saved notifications. Time spent on notifications for ObservableCollection and ObservableCollectionEx are described by the following equitation:

ObservableCollection: overhead = (n * a) + (n * b)

ObservableCollectionEx: overhead = a + c + (n * b)

Where a is a constant overhead required to execute notification, n is number of changed elements, b is the cost of redrawing each individual element, and c the overhead required to execute delayed notification.

ObservableCollectionEx/DelayedPerformance.png

The value on the left represents the time required to complete notifications. The value on the bottom specifies the number of changed elements.

In these equations, values a and c are constants so the performance depends only on two elements: b – the time required to redraw each individual element, and n – the number of notified elements. As you know from calculus, b controls how steep the raise of the graph is. So when the time required to redraw each element (b) increases, these two lines meet sooner. It means it takes less changed elements to see performance benefits.

History

  • 09/05/2011 - Released.
  • 09/11/2011 - Fixed the PropertyChanged null reference.
  • 09/11/2011 - Fixed CollectionView incompatibility (big thanks to Fred who pointed it out).
  • 10/06/2011 - Added Nuget package at this link.
  • 04/30/2012 - Added Implementation section.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Eugene Sadovoi

Software Developer (Senior)

United States United States

Member

Senior Software Engineer with over 20+ years of experience in variety of technologies, development tools and programming languages.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberJF201519:52 20 May '12  
GeneralRe: My vote of 5 PinmemberEugene Sadovoi4:44 21 May '12  
GeneralMy vote of 5 PinmvpJani Giannoudis21:07 14 May '12  
GeneralRe: My vote of 5 PinmemberEugene Sadovoi4:45 21 May '12  
SuggestionSimple improvement needed to avoid design guidelines voilation [modified] PinmemberAshutosh Bhawasinka21:21 7 May '12  
QuestionRe: Simple improvement needed to avoid design guidelines voilation PinmemberEugene Sadovoi9:27 8 May '12  
QuestionBecause of these reasons I’ve chosen to implement delays by inheriting from ObservableCollection. PinmemberFatCatProgrammer5:45 3 May '12  
QuestionRe: Because of these reasons I’ve chosen to implement delays by inheriting from ObservableCollection. PinmemberEugene Sadovoi9:17 4 May '12  
AnswerRe: Because of these reasons I’ve chosen to implement delays by inheriting from ObservableCollection. PinmemberMatthew Searles20:13 7 May '12  
GeneralRe: Because of these reasons I’ve chosen to implement delays by inheriting from ObservableCollection. PinmemberEugene Sadovoi9:28 8 May '12  
QuestionQuestion PinmemberSk8tz13:43 11 Apr '12  
AnswerRe: Question [modified] PinmemberEugene Sadovoi14:53 11 Apr '12  
QuestionMy (changed) vote of #5 PinmemberBillWoodruff0:14 24 Sep '11  
AnswerRe: My (changed) vote of #5 PinmemberEugene Sadovoi5:58 24 Sep '11  
GeneralMy vote of 4 Pinmemberalbertoleon1:01 22 Sep '11  
AnswerRe: My vote of 4 PinmemberEugene Sadovoi4:20 22 Sep '11  
GeneralNaming guideline broken Pinmemberalbertoleon4:34 22 Sep '11  
AnswerRe: Naming guideline broken PinmemberEugene Sadovoi4:48 22 Sep '11  
GeneralRe: Naming guideline broken Pinmembermark merrens4:58 3 Apr '12  
QuestionMy vote of 4.5 [modified] Pinmembermakaveli_00006:51 16 Sep '11  
AnswerRe: My vote of 4.5 PinmemberEugene Sadovoi7:00 16 Sep '11  
SuggestionMore practice-oriented performance tests PinmemberJani Giannoudis5:34 15 Sep '11  
GeneralRe: More practice-oriented performance tests PinmemberEugene Sadovoi5:42 15 Sep '11  
AnswerRe: More practice-oriented performance tests PinmemberJani Giannoudis5:47 15 Sep '11  
GeneralRe: More practice-oriented performance tests PinmemberEugene Sadovoi5:50 15 Sep '11  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 8 May 2012
Article Copyright 2011 by Eugene Sadovoi
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid