Remove unused message id

This commit is contained in:
Frank A. Krueger 2017-06-18 23:42:13 -07:00
parent a6f664ae8a
commit 8f998da8a8
1 changed files with 1 additions and 10 deletions

View File

@ -7,9 +7,6 @@ namespace Ooui
{ {
public class Message public class Message
{ {
[JsonProperty("mid")]
public long Id = GenerateId ();
[JsonProperty("m")] [JsonProperty("m")]
public MessageType MessageType = MessageType.Nop; public MessageType MessageType = MessageType.Nop;
@ -19,7 +16,7 @@ namespace Ooui
[JsonProperty("k")] [JsonProperty("k")]
public string Key = ""; public string Key = "";
[JsonProperty("v")] [JsonProperty("v", NullValueHandling = NullValueHandling.Ignore)]
public object Value = null; public object Value = null;
public static Message Call (string targetId, string method, params object[] args) => new Message { public static Message Call (string targetId, string method, params object[] args) => new Message {
@ -34,12 +31,6 @@ namespace Ooui
TargetId = targetId, TargetId = targetId,
Key = eventType, Key = eventType,
}; };
static long idCounter = 0;
static long GenerateId ()
{
return System.Threading.Interlocked.Increment (ref idCounter);
}
} }
[JsonConverter (typeof (StringEnumConverter))] [JsonConverter (typeof (StringEnumConverter))]