gpt4 book ai didi

c# - 了解 Silverlight 调度程序

转载 作者:IT王子 更新时间:2023-10-29 04:22:02 27 4
gpt4 key购买 nike

我有一个无效的跨线程访问问题,但经过一些研究,我设法使用 Dispatcher 修复了它。

现在在我的应用程序中我有延迟加载的对象。我将使用 WCF 进行异步调用,并且像往常一样使用 Dispatcher 来更新我的对象 DataContext,但是它不适用于这种情况。但是我确实找到了解决方案here .这是我不明白的地方。

在我的 UserControl 中,我有代码可以在我的对象上调用 Toggle 方法。像这样在 Dispatcher 中调用此方法。

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

正如我之前提到的,这不足以满足 Silverlight。我不得不在我的对象中进行另一个 Dispatcher 调用。我的对象不是 UIElement,而是一个处理其所有加载/保存的简单类。

所以通过调用解决了问题

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

在我的类(class)里。

为什么我必须调用 Dispatcher 两次才能实现此目的?一个高层电话还不够吗? Deployment.Current.Dispatcher 和 UIElement 中的 Dispatcher 之间有区别吗?

最佳答案

理想情况下,存储一个 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);
}
}
}
}

关于c# - 了解 Silverlight 调度程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2581647/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com