You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using TouchSocket.Core;
|
|
|
|
|
using TouchSocket.Sockets;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Socket.TSocket
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 一个心跳计数器扩展。
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal static class DependencyExtensions
|
|
|
|
|
{
|
|
|
|
|
public static readonly DependencyProperty<Timer> HeartbeatTimerProperty =
|
|
|
|
|
DependencyProperty<Timer>.Register("HeartbeatTimer", typeof(DependencyExtensions), null);
|
|
|
|
|
|
|
|
|
|
public static bool Ping<TClient>(this TClient client) where TClient : ITcpClientBase
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
client.Send(new MyRequestInfo() { DataType = DataType.Ping }.PackageAsBytes());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
client.Logger.Exception(ex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool Pong<TClient>(this TClient client) where TClient : ITcpClientBase
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
client.Send(new MyRequestInfo() { DataType = DataType.Pong }.PackageAsBytes());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
client.Logger.Exception(ex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|