使用Signalr / PersistentConnection将连接的客户端发送服务器消息

时间:2011-09-30 23:16:37

标签: signalr

我使用的是SignalR / PersistentConnection,而不是Hub。

我想从服务器向客户端发送消息。我有客户端ID发送它,但是如何从服务器向客户端发送消息?

就像,当某些事件发生在服务器上时,我们希望向特定用户发送通知。

有什么想法吗?

3 个答案:

答案 0 :(得分:4)

github页面显示了如何使用PersistentConnections执行此操作。

public class MyConnection : PersistentConnection {
    protected override Task OnReceivedAsync(string clientId, string data) {
        // Broadcast data to all clients
        return Connection.Broadcast(data);
    }
}

Global.asax中

using System;
using System.Web.Routing;
using SignalR.Routing;

public class Global : System.Web.HttpApplication {
    protected void Application_Start(object sender, EventArgs e) {
        // Register the route for chat
        RouteTable.Routes.MapConnection<MyConnection>("echo", "echo/{*operation}");
    }
}

然后在客户端:

$(function () {
    var connection = $.connection('echo');

    connection.received(function (data) {
        $('#messages').append('<li>' + data + '</li>');
    });

    connection.start();

    $("#broadcast").click(function () {
        connection.send($('#msg').val());
    });
});

答案 1 :(得分:1)

可能是帮助中的AddToGroup函数 在服务器端

将客户端放入不同的渠道

public bool Join(string channel)
{
    AddToGroup(channel.ToString()).Wait();
    return true;
}

然后他们可以在不同的频道发送消息

public void Send(string channel, string message)
{

    String id = this.Context.ClientId;

    Clients[channel.ToString()].addMessage(message);

}

答案 2 :(得分:0)

using SignalR;
using SignalR.Hosting.AspNet;
using SignalR.Infrastructure;

public class MyConnection : PersistentConnection
{
}

public class Notifier
{
  public void Notify(string clientId, object data) {
    MyConnection connection = (MyConnection) AspNetHost.DependencyResolver
      .Resolve<IConnectionManager()
      .GetConnection<MyConnection>();

    connection.Send(clientId, data);
  }
}

https://github.com/SignalR/SignalR/wiki/PersistentConnection