Mercurial > silverbladetech
annotate Messaging/Common/Settings.cs @ 29:9919ee227c93
msmq added
author | adminsh@apollo |
---|---|
date | Wed, 21 Mar 2012 22:09:18 +0000 |
parents | 96fdf58e05b4 |
children | 7d9de5746f18 |
rev | line source |
---|---|
26 | 1 namespace Common |
2 { | |
3 public class Settings | |
4 { | |
27 | 5 public const int SocketsPortNumber = 5671; |
6 public const int RabbitPortNumber = 5672; | |
7 public const int RabbitProtoPortNumber = 5673; | |
29 | 8 public const string MsmqQueueName = @".\private$\Queue#1"; |
9 public const string RabbitQueueName = "Queue#2"; | |
26 | 10 //public const string Uri = @"amqp://user:pass@localhost:5672/vhost\"; |
11 } | |
12 } |