annotate Messaging/Common/Settings.cs @ 27:96fdf58e05b4
Server working with sockets and rabbitmq
author |
adminsh@apollo |
date |
Wed, 21 Mar 2012 19:00:59 +0000 |
parents |
045dac571339 |
children |
9919ee227c93 |
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;
|
26
|
8 public const string QueueName = "Queue#1";
|
|
9 //public const string Uri = @"amqp://user:pass@localhost:5672/vhost\";
|
|
10 }
|
|
11 }
|