Kafka - Advanced Stream Processing
Given the following code snippet, what will be printed if the punctuator is scheduled with WALL_CLOCK_TIME every 5 seconds?
context.schedule(Duration.ofSeconds(5), PunctuationType.WALL_CLOCK_TIME, timestamp -> System.out.println("Tick at " + timestamp));