2020-08-08 08:53:35 +02:00
|
|
|
|
namespace Giants.Services
|
|
|
|
|
{
|
|
|
|
|
using System;
|
|
|
|
|
|
2020-08-09 01:31:16 +02:00
|
|
|
|
public class ServerInfo : DataContract.ServerInfo, IIdentifiable
|
2020-08-08 08:53:35 +02:00
|
|
|
|
{
|
2020-08-10 09:22:33 +02:00
|
|
|
|
public string id => this.HostIpAddress;
|
|
|
|
|
|
|
|
|
|
public string DocumentType => nameof(ServerInfo);
|
2020-08-09 01:31:16 +02:00
|
|
|
|
|
2020-08-08 08:53:35 +02:00
|
|
|
|
public string HostIpAddress { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime LastHeartbeat { get; set; }
|
2020-08-09 01:31:16 +02:00
|
|
|
|
|
2020-08-09 11:10:33 +02:00
|
|
|
|
public override bool Equals(object obj)
|
|
|
|
|
{
|
|
|
|
|
return obj is ServerInfo info &&
|
|
|
|
|
base.Equals(obj) &&
|
2020-08-10 09:22:33 +02:00
|
|
|
|
this.HostIpAddress == info.HostIpAddress &&
|
|
|
|
|
this.DocumentType == info.DocumentType;
|
2020-08-09 11:10:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override int GetHashCode()
|
|
|
|
|
{
|
|
|
|
|
HashCode hash = new HashCode();
|
|
|
|
|
hash.Add(base.GetHashCode());
|
2020-08-10 09:22:33 +02:00
|
|
|
|
hash.Add(this.id);
|
|
|
|
|
hash.Add(this.HostIpAddress);
|
|
|
|
|
hash.Add(this.DocumentType);
|
2020-08-09 11:10:33 +02:00
|
|
|
|
return hash.ToHashCode();
|
|
|
|
|
}
|
2020-08-08 08:53:35 +02:00
|
|
|
|
}
|
|
|
|
|
}
|