using Autofac;
using Rhea.Common;
using Rhea.Common.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Tiger.IBusiness
{
public interface IClientMonitor : ITigerMonitor
{
///
/// 客户端心跳上送
///
///
///
///
public Task Heartbeat(Client client, string clientIP);
}
}