Package com.dianping.cat.configuration.aggreation.model.entity

Examples of com.dianping.cat.configuration.aggreation.model.entity.Aggregation


      }
    } catch (Exception e) {
      Cat.logError(e);
    }
    if (m_aggregation == null) {
      m_aggregation = new Aggregation();
    }
    m_handler.register(queryAggregationRules());

    Threads.forGroup("cat").start(new ConfigReloadTask());
  }
View Full Code Here


      return DefaultSaxParser.parse(content);
    } catch (Exception e) {
      Cat.logError(e);
    }
    return new Aggregation();
  }
View Full Code Here

    long modifyTime = config.getModifyDate().getTime();

    synchronized (this) {
      if (modifyTime > m_modifyTime) {
        String content = config.getContent();
        Aggregation aggregation = DefaultSaxParser.parse(content);

        m_aggregation = aggregation;
        m_handler.register(queryAggregationRules());
        m_modifyTime = modifyTime;
      }
View Full Code Here

TOP

Related Classes of com.dianping.cat.configuration.aggreation.model.entity.Aggregation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.