我已经在我的MVC项目中实现了内存存储映射,以存储userId及其相关的connectionsId,如下面的映射链接所示。问题是我无法访问其他服务器端类中的映射实例并向特定用户发送通知。我应该如何修改Hub或SendNotification类来发送通知。请让我知道怎么做。
\\ here is the sample hub class with onconnected and disconnted same as in mapping link
public class NotificationHub : Hub
{
private readonly static ConnectionMapping<string> _connections = new ConnectionMapping<string>();
public void SendChatMessage(string who, string message)
{
string name = Context.User.Identity.Name;
foreach (var connectionId in _connections.GetConnections(who))
{
Clients.Client(connectionId).addChatMessage(name + ": " + message);
}
}
}
\\ other server class where to call hub
public class SendNotification
{
Public void SaveToDb(string userName, class entity)
{
// save to database call
// send Notification to User userName through SignalR if user Exists in Mapping
}
}
这是一个SignalR Mapping链接(https://docs.microsoft.com/en-us/aspnet/signalr/overview/guide-to-the-api/mapping-users-to-connections)!
以下是如何访问外部中心(https://docs.microsoft.com/en-us/aspnet/signalr/overview/guide-to-the-api/hubs-api-guide-server#callfromoutsidehub)!
答案 0 :(得分:1)
您是否看过Backplane文档?请参阅https://docs.microsoft.com/en-us/aspnet/signalr/overview/performance/scaleout-in-signalr。
我们有一个包含许多SignalR客户端的多实例Web层。 Web层中的任何实例都可以与任何浏览器客户端通信。 Hub中的代码不会改变。启动时只有其他逻辑 - 请参阅上述文档。