(Exception e)
| 37 | } |
| 38 | |
| 39 | public void fail(Exception e) { |
| 40 | collector.reportError(e); |
| 41 | for (Tuple t : tupleBatch) { |
| 42 | collector.fail(t); |
| 43 | } |
| 44 | tupleBatch.clear(); |
| 45 | forceFlush = false; |
| 46 | } |
| 47 | |
| 48 | public void ack() { |
| 49 | for (Tuple t : tupleBatch) { |
nothing calls this directly
no test coverage detected