Skip to content

Commit

Permalink
KAFKA-5090: Fix Kafka Streams SessionStore.findSessions javadoc broken
Browse files Browse the repository at this point in the history
Author: mihbor <mbor81@gmail.com>

Reviewers: Matthias J. Sax, Guozhang Wang

Closes #2874 from mihbor/patch-1
  • Loading branch information
mihbor authored and guozhangwang committed Apr 21, 2017
1 parent cba0094 commit 3d8506a
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -27,8 +27,8 @@
public interface SessionStore<K, AGG> extends StateStore, ReadOnlySessionStore<K, AGG> {

/**
* Fetch any sessions with the matching key and the sessions end is &le earliestEndTime and the sessions
* start is &ge latestStartTime
* Fetch any sessions with the matching key and the sessions end is &ge; earliestSessionEndTime and the sessions
* start is &le; latestSessionStartTime
*/
KeyValueIterator<Windowed<K>, AGG> findSessions(final K key, long earliestSessionEndTime, final long latestSessionStartTime);

Expand Down

0 comments on commit 3d8506a

Please sign in to comment.