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 + "\'"; }
public TopicProcessingGroup(QueueConnection connection, string jailedTag, MessageFormat messageFormat) : base(connection, jailedTag, messageFormat) { }