Gets the list of events in the window. Note: If the number of tuples in windows is huge, invoking get would load all the tuples into memory and may throw an OOM exception. Use windowing with persistence (BaseStatefulWindowedBolt#withPersistence()) and {@link Window#getIte
()
| 33 | * @return the list of events in the window. |
| 34 | */ |
| 35 | List<T> get(); |
| 36 | |
| 37 | /** |
| 38 | * Returns an iterator over the events in the window. |
nothing calls this directly
no outgoing calls
no test coverage detected