Click here to Skip to main content
15,892,746 members
Articles / Desktop Programming / WPF

Introducing the Model Thread View Thread Pattern

Rate me:
Please Sign up or sign in to vote.
4.93/5 (69 votes)
1 May 2010BSD14 min read 166.5K   862   172  
Reduce threading code, and increase UI responsiveness with a new pattern extending MVVM.
#region File and License Information
/*
<File>
	<Copyright>Copyright © 2009, Daniel Vaughan. All rights reserved.</Copyright>
	<License>
	This file is part of DanielVaughan's base library

    DanielVaughan's base library is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    DanielVaughan's base library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with DanielVaughan's base library.  If not, see http://www.gnu.org/licenses/.
	</License>
	<Owner Name="Daniel Vaughan" Email="dbvaughan@gmail.com"/>
	<CreationDate>2010-04-22 17:26:58Z</CreationDate>
</File>
*/
#endregion

using System;
using System.Reflection;

namespace DanielVaughan.Concurrency
{
	/// <summary>
	/// Allows a <see cref="Delegate"/> to be referenced directly
	/// or using a <see cref="WeakReference"/>.
	/// </summary>
	public class DelegateReference
	{
		readonly Delegate delegateToReference;
		readonly WeakReference delegateWeakReference;
		readonly MethodInfo method;
		readonly Type delegateType;

		/// <summary>
		/// Initializes a new instance of the <see cref="DelegateReference"/> class.
		/// </summary>
		/// <param name="delegateToReference">The target delegate.</param>
		/// <param name="useWeakReference">if set to <c>true</c> a weak reference 
		/// will be used for the target of the <see cref="Delegate"/>.</param>
		public DelegateReference(Delegate delegateToReference, bool useWeakReference)
		{
			ArgumentValidator.AssertNotNull(delegateToReference, "delegateToReference");

			if (useWeakReference)
			{
				delegateWeakReference = new WeakReference(delegateToReference.Target);
				method = delegateToReference.Method;
				delegateType = delegateToReference.GetType();
			}
			else
			{
				this.delegateToReference = delegateToReference;
			}
		}

		public Delegate Delegate
		{
			get
			{
				return delegateToReference ?? GetDelegate();
			}
		}

		Delegate GetDelegate()
		{
			Delegate result = null;
			if (method.IsStatic)
			{
				result = Delegate.CreateDelegate(delegateType, null, method);
			}
			else
			{
				object target = delegateWeakReference.Target;
				if (target != null)
				{
					result = Delegate.CreateDelegate(delegateType, target, method);
				}
			}
			return result;
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
Engineer
Switzerland Switzerland
Daniel is a former senior engineer in Technology and Research at the Office of the CTO at Microsoft, working on next generation systems.

Previously Daniel was a nine-time Microsoft MVP and co-founder of Outcoder, a Swiss software and consulting company.

Daniel is the author of Windows Phone 8 Unleashed and Windows Phone 7.5 Unleashed, both published by SAMS.

Daniel is the developer behind several acclaimed mobile apps including Surfy Browser for Android and Windows Phone. Daniel is the creator of a number of popular open-source projects, most notably Codon.

Would you like Daniel to bring value to your organisation? Please contact

Blog | Twitter


Xamarin Experts
Windows 10 Experts

Comments and Discussions