Returns an iterator over the events in the window. Note: This is only supported when using windowing with persistence BaseStatefulWindowedBolt#withPersistence(). @return an Iterator over the events in the current window. @throws UnsupportedOperationException if not
()
| 45 | * @throws UnsupportedOperationException if not using {@link BaseStatefulWindowedBolt#withPersistence()} |
| 46 | */ |
| 47 | default Iterator<T> getIter() { |
| 48 | throw new UnsupportedOperationException("Not implemented"); |
| 49 | } |
| 50 |