Kafka - Advanced Stream Processing
Given the following code snippet in a Kafka Streams processor:
context.schedule(Duration.ofMinutes(1), PunctuationType.STREAM_TIME, timestamp -> {
System.out.println("Punctuator triggered at " + timestamp);
});
What will be printed when the punctuator triggers?