C# Singleton UI 线程问题

发布于 2024-12-28 13:31:25 字数 293 浏览 0 评论 0原文

我正在使用其他人编写的获取市场数据的服务。它连接到他们的服务器,你向它发送一个符号,它会发回数据。好吧,我正在尝试使用它打开多个视图,以便您可以获得多个交易品种的市场数据。完成此操作的方法是,我的 ViewModel 订阅单例事件 IncomingMessage,如果消息包含 ViewModel 的符号,则会将其放入 ObservableCollection 中。这就是问题所在。

如何将活动消息安全地添加到我的收藏中?

[编辑] 我相信抛出异常是因为我的 ObservableCollection 绑定到我视图上的 DataGrid。

I am using a service that someone else has written that gets market data. It connects to their server and you send it a symbol and it sends back data. Well I am trying to use it to have multiple Views open so you can get market data for more than one symbol. The way this is done is that my ViewModel subscribes to the singleton event IncomingMessage and if the message contains the ViewModel's symbol it puts it into an ObservableCollection. And that's where the problem is.

How can I add the message from the event to my collection safely?

[Edit]
I believe the exception is being thrown because my ObservableCollection is bound to a DataGrid on my view.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

獨角戲 2025-01-04 13:31:25

您需要将对 Add 方法的调用封送至 UI 线程。在 Prism 中,这通常是通过事件聚合器完成的,但如果您不使用 prism:

假设您有某种类型 Tick 代表您的市场数据,并且数据事件只是一个 System .Action

dataSource.IncomingMessage += (tick) => Application.Current.Dispatcher.Invoke(new Action<Tick>(AddTheTick), tick);

或者,简单地说

dataSource.IncomingMessage += (tick) => Application.Current.Dispatcher.Invoke(new Action<Tick>(myObservableCollection.Add), tick);

You need to marshal the call to the Add method to the UI thread. In Prism this is usually done with the event aggregator, but if you are not using prism:

Assuming you have some type Tick that represents your market data, and that the data event is just a System.Action<Tick>:

dataSource.IncomingMessage += (tick) => Application.Current.Dispatcher.Invoke(new Action<Tick>(AddTheTick), tick);

or, simply

dataSource.IncomingMessage += (tick) => Application.Current.Dispatcher.Invoke(new Action<Tick>(myObservableCollection.Add), tick);
余生一个溪 2025-01-04 13:31:25

ObservableCollection 通常无法从后台线程更新。您需要使用 Dispatcher.Invoke()Dispatcher.BeginInvoke() 来确保数据添加到集合所属的线程上。

Application.Current.Dispatcher.Invoke((Action)(() => myObservableCollection.Add(value)));

这是一项非常常见的任务,值得创建一个扩展方法来为您处理这个问题:

static class ObservableCollectionExtensions
{
    internal static void InvokeAdd<T>(this ObservableCollection<T> self, T item)
    {
        Application.Current.Dispatcher.Invoke((Action<T>)self.Add, item);
    }

    internal static void BeginInvokeAdd<T>(this ObservableCollection<T> self, T item)
    {
        Application.Current.Dispatcher.BeginInvoke(new Action<T>(self.Add), item);
    }
}

这样您就可以安全地进行几次击键并输入以下内容:

myObservableCollection.InvokeAdd(value);

ObservableCollection<T> generally can't be updated from background threads. You need to use Dispatcher.Invoke() or Dispatcher.BeginInvoke() to ensure that the data is added on the thread to which the collection belongs.

Application.Current.Dispatcher.Invoke((Action)(() => myObservableCollection.Add(value)));

That's a pretty common task, it's worthwhile to create an extension method to take care of this for you:

static class ObservableCollectionExtensions
{
    internal static void InvokeAdd<T>(this ObservableCollection<T> self, T item)
    {
        Application.Current.Dispatcher.Invoke((Action<T>)self.Add, item);
    }

    internal static void BeginInvokeAdd<T>(this ObservableCollection<T> self, T item)
    {
        Application.Current.Dispatcher.BeginInvoke(new Action<T>(self.Add), item);
    }
}

That way you can safe a few keystrokes and type this instead:

myObservableCollection.InvokeAdd(value);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文