如何在.NET Core 2.2中从服务器端设置SignalR连接?

问题描述

我在.NET core 2.2上有一个MVC应用程序。我想在指定日期向用户发送即时消息。当我使用Java将其发送到集线器时,就可以对其进行处理。但是我无法从数据库检查日期并触发集线器。我构建了一个结构,该结构将从下面的地址每分钟检查一次DB。在这种情况下,连接状态在HubConnection部分中显示为断开连接。我正在按照https://docs.microsoft.com/th-th/aspnet/core/signalr/background-services?view=aspnetcore-2.2上的说明进行操作。

集会课程内容

public class TestHub: Hub
{
    public async Task SendMessage(string message)
    {
        await Clients.All.SendAsync("ReceiveMessage",message);
    }
}
public class Worker : BackgroundService
{
    private HubConnection _connection;
    _connection = new HubConnectionBuilder().WithUrl(myUrl).Build();
    _connection.StartAsync();
    //I will do database operations here
    _connection.InvokeAsync("SendMessage","test"); //At this point,my connection state is in a disconnected state and my parameter cannot be passed to my "SendMessage" method on the hub.
}

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)