view 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
line wrap: on
line source

namespace Common
{
    public class Settings
    {
        public const int SocketsPortNumber = 5671;
        public const int RabbitPortNumber = 5672;
        public const int RabbitProtoPortNumber = 5673;
        public const string QueueName = "Queue#1";
        //public const string Uri = @"amqp://user:pass@localhost:5672/vhost\";
    }
}