2016-07-12 14:57:24 +00:00
|
|
|
|
namespace PettingZoo.Model
|
2016-06-20 21:22:20 +00:00
|
|
|
|
{
|
|
|
|
|
static class RabbitMQProperties
|
|
|
|
|
{
|
|
|
|
|
public const string ContentType = "content-type";
|
|
|
|
|
public const string ContentEncoding = "content-encoding";
|
|
|
|
|
public const string DeliveryMode = "delivery-mode";
|
|
|
|
|
public const string Priority = "priority";
|
|
|
|
|
public const string CorrelationId = "correlation-id";
|
|
|
|
|
public const string ReplyTo = "reply-to";
|
|
|
|
|
public const string Expiration = "expiration";
|
|
|
|
|
public const string MessageId = "message-id";
|
|
|
|
|
public const string Timestamp = "timestamp";
|
|
|
|
|
public const string Type = "type";
|
|
|
|
|
public const string UserId = "user-id";
|
|
|
|
|
public const string AppId = "app-id";
|
|
|
|
|
public const string ClusterId = "cluster-id";
|
|
|
|
|
}
|
|
|
|
|
}
|