如何创建单个Notification实例?

发布于 2024-09-07 07:27:52 字数 266 浏览 7 评论 0原文

使用 Rx,是否有一种简单的方法来创建单个 Notification

我能找到的最接近的是:

T value = ..;
var notifyValue = EnumerableEx.Return(value).Materialize().First();

这似乎相当迂回。 Notification 的构造函数无法访问,但是否存在我不知道的工厂方法?

Using Rx, is there a simple way to create a single Notification<T>?

The closest I've been able to find is:

T value = ..;
var notifyValue = EnumerableEx.Return(value).Materialize().First();

This seems rather roundabout. The constructors for Notification<T> are inaccessible, but is there a factory method that I'm not aware of?

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

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

发布评论

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

评论(1

(り薆情海 2024-09-14 07:27:52

Notification 是一个抽象基类。您需要构造其子类之一,OnCompletedOnError 或本例中的 OnNext

var notifyValue = new Notification<T>.OnNext(value);

Notification<T> is an abstract base class. You need to construct one of its subclasses, OnCompleted, OnError, or in this case OnNext.

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