MCPcopy Create free account
hub / github.com/apache/storm / handleAck

Method handleAck

storm-client/src/jvm/org/apache/storm/task/ShellBolt.java:215–221  ·  view source on GitHub ↗
(Object id)

Source from the content-addressed store, hash-verified

213 }
214
215 private void handleAck(Object id) {
216 Tuple acked = inputs.remove(id);
217 if (acked == null) {
218 throw new RuntimeException("Acked a non-existent or already acked/failed id: " + id);
219 }
220 collector.ack(acked);
221 }
222
223 private void handleFail(Object id) {
224 Tuple failed = inputs.remove(id);

Callers 1

runMethod · 0.80

Calls 2

removeMethod · 0.65
ackMethod · 0.65

Tested by

no test coverage detected