47484950515253545556575859
@Override public void init() throws InitException { try { Query query = new Query(); this.zkConfig = query.getZkConfig(this.coreManager.getMonitorConfig().getConfigPath()); query.close(); } catch (IOException e) { throw new InitException("��ʼ��ZKConnProberʧ��", e); } }
596061626364656667
} CopyOffsetInZk(PrintStream out) throws InitException { super(out); this.query = new Query(); this.query.init("zk.properties", null); this.zkManager = new ZkManager(this.query); }
676869707172737475
} public CopyOffsetInZk(String configFile, PrintWriter out) throws InitException { super(out); this.query = new Query(); this.query.init(configFile, null); this.zkManager = new ZkManager(query); }
6667686970717273
} @SuppressWarnings("static-access") public void init() throws InitException { this.query = new Query(); this.query.init(this.getMonitorConfig().getConfigPath(), null); }
54555657585960616263
public OffsetCompareProber(CoreManager coreManager) { super(coreManager); } public void init() throws InitException { this.query = new Query(); this.query.init(this.getMonitorConfig().getConfigPath(), null); }