ccfde19d2d
Added Mock connection Fixed AutoScroll failing with high rate message flow
32 lines
745 B
C#
32 lines
745 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PettingZoo.Connection
|
|
{
|
|
public class MessageInfo
|
|
{
|
|
public DateTime Timestamp { get; set; }
|
|
public string Exchange { get; set; }
|
|
public string RoutingKey { get; set; }
|
|
public byte[] Body { get; set; }
|
|
|
|
public Dictionary<string, string> Properties;
|
|
|
|
public string ContentType
|
|
{
|
|
get
|
|
{
|
|
return Properties != null && Properties.ContainsKey(RabbitMQProperties.ContentType)
|
|
? Properties[RabbitMQProperties.ContentType]
|
|
: "";
|
|
}
|
|
}
|
|
|
|
|
|
public MessageInfo()
|
|
{
|
|
Timestamp = DateTime.Now;
|
|
}
|
|
}
|
|
}
|