gpt4 book ai didi

网页关闭时的 SignalR 录制

转载 作者:行者123 更新时间:2023-12-04 05:48:31 28 4
gpt4 key购买 nike

我正在使用带有 SignalR 的 MassTransit 请求和响应。该网站向创建文件的 Windows 服务发出请求。创建文件后,Windows 服务会将响应消息发送回网站。该网站将打开该文件并使其可供用户查看。我想处理用户在创建文件之前关闭网页的场景。在这种情况下,我希望将创建的文件通过电子邮件发送给他们。

无论用户是否关闭网页,都会运行响应消息的消息处理程序。我希望能够做的是在响应消息处理程序中以某种方式知道网页已关闭。这是我已经做的。它不起作用,但它确实说明了我的想法。在网页上我有

$(window).unload(function () {
if (event.clientY < 0) {
// $.connection.hub.stop();
$.connection.exportcreate.setIsDisconnected();
}
});

exportcreate 是我的集线器名称。在 setIsDisconnected 中,我会在 Caller 上设置一个属性吗?假设我成功设置了一个属性来指示网页已关闭。如何在响应消息处理程序中找出该值。这就是它现在所做的
    protected void BasicResponseHandler(BasicResponse message)
{
string groupName = CorrelationIdGroupName(message.CorrelationId);

GetClients()[groupName].display(message.ExportGuid);
}

private static dynamic GetClients()
{
return AspNetHost.DependencyResolver.Resolve<IConnectionManager>().GetClients<ExportCreateHub>();
}

我将消息关联 ID 用作一个组。现在对我来说,消息中的 ExportGuid 非常重要。那是用来识别文件的。因此,如果我要通过电子邮件发送创建的文件,我必须在响应处理程序中执行此操作,因为我需要 ExportGuid 值。如果我确实为网页关闭在我的集线器中的 Caller 上存储了一个值,我将如何在响应处理程序中访问它。

以防万一你需要知道。显示在网页上定义为
            exportCreate.display = function (guid) {
setTimeout(function () {
top.location.href = 'GetExport.ashx?guid=' + guid;
}, 500);
};

GetExport.ashx 打开文件并将其作为响应返回。

谢谢,

问候本

最佳答案

我认为更好的选择是实现正确的连接处理。具体来说,让您的集线器实现 IDisconnect 和 IConnected。然后,您将拥有 connectionId 到文档 Guid 的映射。

    public Task Connect()
{
connectionManager.MapConnectionToUser(Context.ConnectionId, Context.User.Name);
}

public Task Disconnect()
{
var connectionId = Context.ConnectionId;
var docId = connectionManager.LookupDocumentId(connectionId);
if (docId != Guid.Empty)
{
var userName = connectionManager.GetUserFromConnectionId(connectionId);
var user = userRepository.GetUserByUserName(userName);
bus.Publish( new EmailDocumentToUserCommand(docId, user.Email));
}
}

// Call from client
public void GenerateDocument(ClientParameters docParameters)
{
var docId = Guid.NewGuid();
connectionManager.MapDocumentIdToConnection(Context.ConnectionId, docId);
var command = new CreateDocumentCommand(docParameters);
command.Correlationid = docId;
bus.Publish(command);
Caller.creatingDocument(docId);
}

// Acknowledge you got the doc.
// Call this from the display method on the client.
// If this is not called, the disconnect method will handle sending
// by email.
public void Ack(Guid docId)
{
connectionManager.UnmapDocumentFromConnectionId(connectionId, docId);
Caller.sendMessage("ok");
}

当然,这是从我的头顶。

关于网页关闭时的 SignalR 录制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10379226/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com