gpt4 book ai didi

c# - 为什么这段代码不是异步的

转载 作者:行者123 更新时间:2023-11-30 22:35:45 25 4
gpt4 key购买 nike

据我了解,Subscribe 方法应该是异步的,而 Run 是同步的。但是这段代码是以同步方式工作的。有人能解决吗?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reactive.Linq;

namespace RxExtensionsDemo
{
class Program
{
static void Main(string[] args)
{
IObservable<int> source = Observable.Generate<int, int>(0, i => i < 10000, i => i + 1, i => i * i);

IDisposable subscription = source.Subscribe(x => { Console.WriteLine("Received {0} from source", x); }, ex =>
{
Console.WriteLine("Error occured");

}, () =>
{
Console.WriteLine("Source said there are no more messages to follow");
});

Console.WriteLine("Asynchronous");

Console.ReadKey();
}
}
}

我总是看到最后写入控制台的异步。

最佳答案

默认情况下 Observable.Generate 使用 Scheduler.CurrentThread。但是,您可以指定不同的调度程序以获得所需的异步行为:

IObservable<int> source = Observable.Generate<int, int>(
0,
i => i < 10000,
i => i + 1,
i => i * i,
Scheduler.NewThread
);

Scheduler 类位于 System.Reactive.Concurrency 命名空间中。

其他可能的异步预定义调度程序是 Scheduler.TaskPoolScheduler.ThreadPool

关于c# - 为什么这段代码不是异步的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7346811/

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