this.zkConfig.zkConnect = "localhost:2181";
this.client =
new ZkClient(this.zkConfig.zkConnect, this.zkConfig.zkSessionTimeoutMs,
this.zkConfig.zkConnectionTimeoutMs, new ZkUtils.StringSerializer());
this.metaZookeeper = new MetaZookeeper(this.client, this.zkConfig.zkRoot);
this.loadBalanceStrategy = new DefaultLoadBalanceStrategy();
this.slaveConsumerZooKeeper =
new SlaveConsumerZooKeeper(this.metaZookeeper, this.remotingClient, this.client, this.zkConfig,
this.brokerId);
}