Exemplo n.º 1
0
 public static void StartToCheckIfGroupExists(ILogger logger, CheckGroupExistenceWithAckMessage message)
 {
     _startToCheckIfGroupExists(logger, message.TracingId, message.GroupName, null);
 }
 private bool CheckGroupExistenceWithAckMessageEqual(CheckGroupExistenceWithAckMessage x, CheckGroupExistenceWithAckMessage y)
 {
     return(StringEqual(x.GroupName, y.GroupName) &&
            x.AckId == y.AckId &&
            x.TracingId == y.TracingId);
 }