是否可以从 Action 侦听器创建 IObservable?

发布于 2024-12-04 12:04:25 字数 164 浏览 0 评论 0原文

我有一个类,它的事件定义为 Action,而不是带有 EventArgs 的经典 EventHandler。有没有办法将其转换为 IObservable,就像使用标准 EventHandler 一样?我需要这样做,以便可以与其他 IObservables 合并。

I have a class that has an event defined as an Action<Guid>, as opposed to a classic EventHandler with EventArgs. Is there a way to convert this to an IObservable the same way would be done with a standard EventHandler? I need to do this so I can merge with other IObservables.

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

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

发布评论

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

评论(1

我只土不豪 2024-12-11 12:04:25

如果您有此类:

public class Foo
{
    public event Action<Guid> Guid;
}

那么这就是您将非标准事件转换为 IObservable所需的代码:

var foo = new Foo();

var guids = Observable.FromEvent<Guid>(
    h => foo.Guid += h,
    h => foo.Guid -= h);

If you have this class:

public class Foo
{
    public event Action<Guid> Guid;
}

Then this is the code you need to turn the non-standard event into an IObservable<Guid>:

var foo = new Foo();

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