Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,16 @@ public <K, V> void process(String topicName, K key, V value, Serializer<K> keySe
process(topicName, keySerializer.serialize(topicName, key), valueSerializer.serialize(topicName, value));
}

/**
* Possibly trigger registered punctuation functions if current time has reached the next defined timestamp for each of the
* processors.
*
* @param timestamp the current timestamp
*/
public void maybePunctuate(long timestamp) {
task.maybePunctuate(timestamp);
}

/**
* Read the next record from the given topic. These records were output by the topology during the previous calls to
* {@link #process(String, byte[], byte[])}.
Expand Down