Package com.taobao.metamorphosis.tools.query

Examples of com.taobao.metamorphosis.tools.query.Query



    @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);
        }
    }
View Full Code Here


    }


    CopyOffsetInZk(PrintStream out) throws InitException {
        super(out);
        this.query = new Query();
        this.query.init("zk.properties", null);
        this.zkManager = new ZkManager(this.query);
    }
View Full Code Here

    }


    public CopyOffsetInZk(String configFile, PrintWriter out) throws InitException {
        super(out);
        this.query = new Query();
        this.query.init(configFile, null);
        this.zkManager = new ZkManager(query);
    }
View Full Code Here

    }


    @SuppressWarnings("static-access")
    public void init() throws InitException {
        this.query = new Query();
        this.query.init(this.getMonitorConfig().getConfigPath(), null);
    }
View Full Code Here

  public OffsetCompareProber(CoreManager coreManager) {
    super(coreManager);
  }

  public void init() throws InitException {
    this.query = new Query();
   
    this.query.init(this.getMonitorConfig().getConfigPath(), null);

  }
View Full Code Here

TOP

Related Classes of com.taobao.metamorphosis.tools.query.Query

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.