0

我没有想到这一点,但这段代码正在将游戏模型发送给所有客户端。我需要使用此控制器操作中的 GameID,并且只针对观看该游戏的客户端。我怎么做?

发布控制器动作

public UpdateGameResponse UpdateGame(int gameId)
        {

...

 var model = Game.Create(XDocument.Load(httpRequest.Files[0].InputStream)).Parse();


         GlobalHost.ConnectionManager.GetHubContext<GameCastHub>().Clients.All.receiveUpdates(Newtonsoft.Json.JsonConvert.SerializeObject(model));

}

中心

 [HubName("gamecastHub")]
    public class GameCastHub : Hub
    {
    }

客户

  var connected = false;
                var gamecastHub = $.connection.gamecastHub;

                if (gamecastHub) {

                    gamecastHub.client.receiveUpdates = function (updates) {
                        console.log('New updates received');
                        processUpdates(updates);
                    };

                    connectLiveUpdates();

                    $.connection.hub.connectionSlow(function () {
                        console.log('Live updates connection running slow');
                    });

                    $.connection.hub.disconnected(function () {
                        connected = false;
                        console.log('Live updates disconnected');
                        setTimeout(connectLiveUpdates, 10000);
                    });

                    $.connection.hub.reconnecting(function () {
                        console.log('Live updates reconnecting...');
                    });

                    $.connection.hub.reconnected(function () {
                        connected = false;
                        console.log('Live updates reconnected');
                    });
                }
4

1 回答 1

0

我建议使用与集线器的每个连接关联的连接 ID 或创建组。注意:每个 GameID 必须有自己的到集线器的连接才能使用连接 ID 解决方案。

我更喜欢根据个人经验使用小组,但无论哪种方式都可以。

要在集线器中创建组,您需要在集线器类中创建一个方法。

public async void setGroup(string groupName){
    await Groups.AddToGroupAsync(Context.ConnectionId, groupName);
}

其次,您需要在客户端有一个 JS 函数来调用集线器函数。

$.connection.hub.invoke("setGroup", groupName).catch(err => console.error(err.toString()));

在您的情况下,您可以将您的游戏 ID 作为groupname然后调用GlobalHost.ConnectionManager.GetHubContext<GameCastHub>().Clients.Groups(gameID).receiveUpdates(Newtonsoft.Json.JsonConvert.SerializeObject(model));

要检索连接 ID:

var _connectionId = $.connection.hub.id;

然后将连接 ID 发送到服务器,并继续使用调用GlobalHost.ConnectionManager.GetHubContext<GameCastHub>().Clients.Clients.Client(_connectionId).receiveUpdates(Newtonsoft.Json.JsonConvert.SerializeObject(model));来调用该特定连接。

于 2018-07-13T23:40:15.137 回答