Ejemplo n.º 1
0
 void CreateQueueToPutErrorsOn(string machineName, string queueName, string path)
 {
     if (QueueExists(machineName, queueName, path))
     {
         _errorQueue = new MiniBusMessageQueue(new MessageQueue(path), _logger, _config.AutoPurgeSystemJournal);
     }
     else
     {
         throw new QueueNotFoundException(queueName + " doesn't exist. Did you type it correctly?");
     }
 }
Ejemplo n.º 2
0
 void CreateReadQueueFromPath(string path)
 {
     _readQueue = new MiniBusMessageQueue(new MessageQueue(path), _logger, _config.AutoPurgeSystemJournal);
 }
Ejemplo n.º 3
0
 void CreateReadQueueFromPath(string path)
 {
     _readQueue = new MiniBusMessageQueue(new MessageQueue(path), _logger);
 }