Package com.alibaba.jstorm.batch.impl

Examples of com.alibaba.jstorm.batch.impl.CoordinatedBolt


    return boltDeclarer;
  }

  public BoltDeclarer setBolt(String id, IBasicBolt bolt, int paralel) {
    CoordinatedBolt coordinatedBolt = new CoordinatedBolt(bolt);

    BoltDeclarer boltDeclarer = topologyBuilder.setBolt(id,
        coordinatedBolt, paralel);

    if (bolt instanceof IPrepareCommit) {
View Full Code Here

TOP

Related Classes of com.alibaba.jstorm.batch.impl.CoordinatedBolt

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.