Package com.alibaba.jstorm.client.spout

Examples of com.alibaba.jstorm.client.spout.IAckValueSpout


    if (isDebug) {
      LOG.info("Acking message {}", msgId);
    }

    if (spout instanceof IAckValueSpout) {
      IAckValueSpout ackValueSpout = (IAckValueSpout) spout;
      ackValueSpout.ack(msgId, values);
    } else {
      spout.ack(msgId);
    }

    task_stats.spout_acked_tuple(stream, timeStamp);
View Full Code Here

TOP

Related Classes of com.alibaba.jstorm.client.spout.IAckValueSpout

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.