Понимание диспетчера Silverlight - PullRequest
25 голосов
/ 06 апреля 2010

У меня была проблема доступа к Invalid Cross Thread, но я провел небольшое исследование, и мне удалось исправить ее с помощью Dispatcher.

Теперь в моем приложении есть объекты с отложенной загрузкой.Я бы сделал асинхронный вызов с использованием WCF и, как обычно, использую Dispatcher, чтобы обновить мои объекты DataContext, однако в этом сценарии это не сработало.Однако я нашел решение здесь .Вот что я не понимаю.

В моем UserControl у меня есть код для вызова метода Toggle для моего объекта.Вызов этого метода внутри Dispatcher, например, так.

Dispatcher.BeginInvoke( () => _CurrentPin.ToggleInfoPanel() );

Как я уже говорил, этого было недостаточно для удовлетворения Silverlight.Мне пришлось сделать еще один вызов диспетчера в моем объекте.Мой объект НЕ UIElement , а простой класс, который обрабатывает все свои собственные загрузки / сохранения.

Итак, проблема была решена путем вызова

Deployment.Current.Dispatcher.BeginInvoke( () => dataContext.Detail = detail );

в моем классе.

Почему мне пришлось дважды вызывать Диспетчер, чтобы добиться этого?Разве звонка на высоком уровне не должно быть достаточно?Есть ли разница между Deployment.Current.Dispatcher и Диспетчером в UIElement?

Ответы [ 2 ]

21 голосов
/ 06 апреля 2010

В идеале, хранить один экземпляр Dispatcher, который можно использовать в другом месте, без проверки потока.

Вызов любого одноэлементного экземпляра .Current может фактически вызвать проверку доступа между потоками. Сохраняя его первым, вы можете избежать этого, чтобы получить общий экземпляр.

Я использую «SmartDispatcher», который использует диспетчер при вызове вне потока, и просто вызывает иначе. Это решает проблему такого рода.

Сообщение: http://www.jeff.wilcox.name/2010/04/propertychangedbase-crossthread/

Код:

// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Public License (Ms-PL).
// Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
// All other rights reserved.

using System.ComponentModel;

namespace System.Windows.Threading
{
    /// <summary>
    /// A smart dispatcher system for routing actions to the user interface
    /// thread.
    /// </summary>
    public static class SmartDispatcher
    {
        /// <summary>
        /// A single Dispatcher instance to marshall actions to the user
        /// interface thread.
        /// </summary>
        private static Dispatcher _instance;

        /// <summary>
        /// Backing field for a value indicating whether this is a design-time
        /// environment.
        /// </summary>
        private static bool? _designer;

        /// <summary>
        /// Requires an instance and attempts to find a Dispatcher if one has
        /// not yet been set.
        /// </summary>
        private static void RequireInstance()
        {
            if (_designer == null)
            {
                _designer = DesignerProperties.IsInDesignTool;
            }

            // Design-time is more of a no-op, won't be able to resolve the
            // dispatcher if it isn't already set in these situations.
            if (_designer == true)
            {
                return;
            }

            // Attempt to use the RootVisual of the plugin to retrieve a
            // dispatcher instance. This call will only succeed if the current
            // thread is the UI thread.
            try
            {
                _instance = Application.Current.RootVisual.Dispatcher;
            }
            catch (Exception e)
            {
                throw new InvalidOperationException("The first time SmartDispatcher is used must be from a user interface thread. Consider having the application call Initialize, with or without an instance.", e);
            }

            if (_instance == null)
            {
                throw new InvalidOperationException("Unable to find a suitable Dispatcher instance.");
            }
        }

        /// <summary>
        /// Initializes the SmartDispatcher system, attempting to use the
        /// RootVisual of the plugin to retrieve a Dispatcher instance.
        /// </summary>
        public static void Initialize()
        {
            if (_instance == null)
            {
                RequireInstance();
            }
        }

        /// <summary>
        /// Initializes the SmartDispatcher system with the dispatcher
        /// instance.
        /// </summary>
        /// <param name="dispatcher">The dispatcher instance.</param>
        public static void Initialize(Dispatcher dispatcher)
        {
            if (dispatcher == null)
            {
                throw new ArgumentNullException("dispatcher");
            }

            _instance = dispatcher;

            if (_designer == null)
            {
                _designer = DesignerProperties.IsInDesignTool;
            }
        }

        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        public static bool CheckAccess()
        {
            if (_instance == null)
            {
                RequireInstance();
            }

            return _instance.CheckAccess();
        }

        /// <summary>
        /// Executes the specified delegate asynchronously on the user interface
        /// thread. If the current thread is the user interface thread, the
        /// dispatcher if not used and the operation happens immediately.
        /// </summary>
        /// <param name="a">A delegate to a method that takes no arguments and 
        /// does not return a value, which is either pushed onto the Dispatcher 
        /// event queue or immediately run, depending on the current thread.</param>
        public static void BeginInvoke(Action a)
        {
            if (_instance == null)
            {
                RequireInstance();
            }

            // If the current thread is the user interface thread, skip the
            // dispatcher and directly invoke the Action.
            if (_instance.CheckAccess() || _designer == true)
            {
                a();
            }
            else
            {
                _instance.BeginInvoke(a);
            }
        }
    }
}
6 голосов
/ 20 декабря 2010

Если вы используете MVVM light toolkit , вы можете использовать класс DispatcherHelper в пространстве имен Galasoft.MvvmLight.Threading в DLL Extras. Он проверяет доступ и использует статическое свойство для диспетчера, подобное SmartDispatcher.

В вашем вызове события запуска App.xaml.cs:

DispatcherHelper.Initialize();

Тогда везде, где вам нужно использовать диспетчер, используйте:

   DispatcherHelper.CheckBeginInvokeOnUI(() => // do stuff; );
...