comparison Messaging/Common/Settings.cs @ 34:874e51b94623

ZeroMq uses different style of address for client and server
author adminsh@apollo
date Thu, 22 Mar 2012 08:42:03 +0000
parents 7d9de5746f18
children
comparison
equal deleted inserted replaced
33:f3a0641c1586 34:874e51b94623
3 public class Settings 3 public class Settings
4 { 4 {
5 public const string MsmqQueueName = @".\private$\Queue#1"; 5 public const string MsmqQueueName = @".\private$\Queue#1";
6 public const int RabbitPortNumber = 5672; 6 public const int RabbitPortNumber = 5672;
7 public const string RabbitQueueName = "Queue#2"; 7 public const string RabbitQueueName = "Queue#2";
8 public const string ZeroMqAddress = "tcp://*:5555"; 8 public const string ZeroMqServerAddress = "tcp://*:5555";
9 public const string ZeroMqClientAddress = "tcp://localhost:5555";
9 } 10 }
10 } 11 }