.net mvc中SignalR的使用配置
2021-01-14 22:15
标签:ext text close client first str 服务 重置 技术 提供五个事件:OnConnected, OnReconnected, OnReceived, OnError 和 OnDisconnect. 这里只 override OnConnected,看需要重载 .net mvc中SignalR的使用配置 标签:ext text close client first str 服务 重置 技术 原文地址:https://www.cnblogs.com/zhuzy/p/12187581.html安装Microsoft.AspNet.SignalR(使用的版本2.4.1)
新建Hubs文件夹:Hub的接口和实现
namespace SingralRedis.Hubs
{
interface IChatHub
{
//服务器下发消息到各个客户端
void SendChat(string id, string name, string message);
//用户上线通知
void SendLogin(string id, string name);
//用户下线通知
void SendLogoff(string id, string name);
//接收客户端发送的心跳包并处理
void TriggerHeartbeat(string id, string name);
}
}
using Microsoft.AspNet.SignalR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Timers;
namespace SingralRedis.Hubs
{
public class ChatHub : Hub,IChatHub
{
public override System.Threading.Tasks.Task OnConnected()
{
string userName = Context.QueryString["userName"]; //获取客户端发送过来的用户名
string userId = Context.QueryString["userId"]; //获取客户端发送过来的用户名
string connectionId = Context.ConnectionId;
if (!string.IsNullOrEmpty(userId))
{
SendLogin(userId, userName, connectionId);
}
//HttpContext.Current.Application.Add(userName, connectionId); //存储关系
return base.OnConnected();
}
public class UserChat
{
public UserChat()
{
Count = 0;
if (Timer == null) Timer = new Timer();
Timer.Interval = 1000; //1s触发一次
Timer.Start();
Timer.Elapsed += (sender, args) =>
{
Count++;
if (Count >= 20)
{
action(); //该用户掉线了,抛出事件通知
Timer.Stop();
}
};
}
private readonly Timer Timer;
public event Action action;
//public event Action action1;
public string UserId { get; set; }
public string ID { get; set; }
public string Name { get; set; }
//内部计数器(每次递增1),如果服务端每5s能收到客户端的心跳包,那么count被重置为0;
//如果服务端20s后仍未收到客户端心跳包,那么视为掉线
public int Count { get; set; }
}
public static class ChatUserCache
{
public static IList
新建Startup.cs文件
using Owin;
namespace SingralRedis
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
// Any connection or hub wire up and configuration should go here
//会默认指定一个路径 "/signalr"
app.MapSignalR();
}
}
}
文章标题:.net mvc中SignalR的使用配置
文章链接:http://soscw.com/index.php/essay/41975.html