Package com.alibaba.jstorm.client.spout

Examples of com.alibaba.jstorm.client.spout.IAckValueSpout.ack()


      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
Copyright © 2018 www.massapi.com. 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.