gpt4 book ai didi

signalr-hub - SignalR async Hub 方法阻止客户端连接

转载 作者:行者123 更新时间:2023-12-05 06:24:57 29 4
gpt4 key购买 nike

ASP.NET SignalR Hubs API 指南 - 服务器 ( https://learn.microsoft.com/en-us/aspnet/signalr/overview/guide-to-the-api/hubs-api-guide-server ) 声明如下:

Making a Hub method asynchronous avoids blocking the connection when it uses the WebSocket transport. When a Hub method executes synchronously and the transport is WebSocket, subsequent invocations of methods on the Hub from the same client are blocked until the Hub method completes.

基于我假设当方法为异步时,来自同一客户端的集线器上的方法调用不会被阻止。

我创建了一个模板 Angular/ASP.NET Core 应用程序 (dotnet new angular)(.Net Core 2.2.108),并添加了以下内容:

服务器:

public class ChatHub : Hub
{
public async Task<string> GetMessage(string name)
{
Console.WriteLine(DateTime.Now + " GetMessage " + name);
await Task.Delay(3000);
return "Hello " + name;
}
}

客户:

export class AppComponent {
title = 'app';

private hubConnection: signalR.HubConnection;

ngOnInit() {

this.hubConnection = new signalR.HubConnectionBuilder()
.withUrl('/chatHub')
.configureLogging(signalR.LogLevel.Debug)
.build();

this.hubConnection
.start()
.then(() => {
console.log('Connection started');
this.logMessage('a');
this.logMessage('b');
})
.catch(err => console.log('Error while starting connection: ' + err));
}

private logMessage(name) {
this.hubConnection.invoke("getMessage", name)
.then(val => console.log(new Date().toLocaleString() + ": " + val));
console.log(new Date().toLocaleString() + ": getMessage " + name + " invoked");
}
}

我在客户端得到如下输出:

[2019-08-08T13:51:09.872Z] Information: Normalizing '/chatHub' to 'https://localhost:44389/chatHub'.
Utils.js:209 [2019-08-08T13:51:09.875Z] Information: Normalizing '/chatHub' to 'https://localhost:44389/chatHub'.
Utils.js:213 [2019-08-08T13:51:09.876Z] Debug: Starting HubConnection.
Utils.js:213 [2019-08-08T13:51:09.878Z] Debug: Starting connection with transfer format 'Text'.
Utils.js:213 [2019-08-08T13:51:09.880Z] Debug: Sending negotiation request: https://localhost:44389/chatHub/negotiate.
core.js:3121 Angular is running in the development mode. Call enableProdMode() to enable the production mode.
Utils.js:213 [2019-08-08T13:51:09.930Z] Debug: Selecting transport 'WebSockets'.
Utils.js:209 [2019-08-08T13:51:09.994Z] Information: WebSocket connected to wss://localhost:44389/chatHub?id=mCisfcGtLdYEBMSIix6tvQ.
Utils.js:213 [2019-08-08T13:51:09.995Z] Debug: Sending handshake request.
Utils.js:209 [2019-08-08T13:51:09.996Z] Information: Using HubProtocol 'json'.
Utils.js:213 [2019-08-08T13:51:10.040Z] Debug: Server handshake complete.
app.component.ts:28 Connection started
app.component.ts:38 8/8/2019, 3:51:10 PM: getMessage a invoked
app.component.ts:38 8/8/2019, 3:51:10 PM: getMessage b invoked
app.component.ts:37 8/8/2019, 3:51:13 PM: Hello a
app.component.ts:37 8/8/2019, 3:51:16 PM: Hello b

在服务器上(AspNetCore 消息被剥离):

signalr-test> 2019-08-08 3:51:10 PM GetMessage a
signalr-test> 2019-08-08 3:51:13 PM GetMessage b

第二次服务器调用有 3 秒的延迟,客户端回复也有 3 秒的延迟。调试还显示,仅在第一个调用完成(任务完成)后,第二个调用才被放置在集线器上。看起来 SignalR 使用 WebSockets 传输,但服务器按顺序处理消息,因此来自同一客户端的方法调用被阻止,即使集线器方法是异步的。

我错过了什么?或者我误解了什么?

我的实验:

  • 这两个 GetMessage 调用发生在不同的线程上,只是第二个在第一个完成后立即开始
  • 立即处理来自其他客户端的消息(与第一个并行)
  • 如果我删除返回类型 (Task GetMessage(string name)),则会发生同样的事情
  • 如果我使方法同步 (string GetMessage(string name)),那么会发生同样的事情,而且对 GetMessage 的两次调用也会发生在同一个线程上(我认为这是预期的)

最佳答案

不是一个完整的答案,只是一个观察。我也刚刚学习如何使用 SignalR 并创建了一个只休眠 10 秒的方法来模拟长时间运行的操作。我阅读了以下内容 docs article了解这件事。

SignalR creates a new instance of your Hub class each time it needs to handle a Hub operation such as when a client connects [..]

所以我打开了同一页面的第二个选项卡。然后我在 1 秒的时间跨度内在两个选项卡中调用了集线器方法一次。这正如我预期的那样工作,该方法没有阻止并在 1 秒的时间跨度内将两个响应消息发送到两个选项卡。

我想这与连接有关。如果您使用相同的连接进行相同的调用,它似乎是按顺序处理的。但是如果你使用两个连接来做同样的事情,它似乎是并行处理的。

这不是一个完整的答案,因为上面的引述并不完整,完整的引述如下:

SignalR creates a new instance of your Hub class each time it needs to handle a Hub operation such as when a client connects, disconnects, or makes a method call to the server.

也许我只是没有正确理解这一点,但目前我的观察足以满足我的情况。不过,我仍然希望对这种行为有完整的解释。

关于signalr-hub - SignalR async Hub 方法阻止客户端连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57426069/

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