Package org.apache.kafka.streams.state
Interface WindowStoreIterator<V>
- Type Parameters:
- V- Type of values
- All Superinterfaces:
- AutoCloseable,- Closeable,- Iterator<KeyValue<Long,,- V>> - KeyValueIterator<Long,- V> 
Iterator interface of 
KeyValue with key typed Long used for WindowStore.fetch(Object, long, long)
 and WindowStore.fetch(Object, Instant, Instant)
 Users must call its close method explicitly upon completeness to release resources,
 or use try-with-resources statement (available since JDK7) for this Closeable class.- 
Method SummaryMethods inherited from interface java.util.IteratorforEachRemaining, hasNext, next, removeMethods inherited from interface org.apache.kafka.streams.state.KeyValueIteratorpeekNextKey
- 
Method Details- 
closevoid close()- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Specified by:
- closein interface- KeyValueIterator<Long,- V> 
 
 
-