如何解决如何在.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 举报,一经查实,本站将立刻删除。