Example #1
0
 protected ProcessingGroupBase(QueueConnection connection, string jailedTag, MessageFormat messageFormat)
 {
     m_JailedTag     = jailedTag;
     m_MessageFormat = messageFormat;
     if (connection == null)
     {
         throw new ArgumentNullException("connection");
     }
     m_Connection   = connection;
     JailedSelector = SonicTransportConstants.JAILED_PROPERTY_NAME + " = \'" + m_JailedTag + "\'";
 }
Example #2
0
 public TopicProcessingGroup(QueueConnection connection, string jailedTag, MessageFormat messageFormat)
     : base(connection, jailedTag, messageFormat)
 {
 }