jiexray commented on code in PR #25996:
URL: https://github.com/apache/flink/pull/25996#discussion_r1918436120
##########
flink-runtime/src/main/java/org/apache/flink/streaming/api/windowing/assigners/WindowAssigner.java:
##########
@@ -64,6 +65,12 @@ public abstract Collection<W> assignWindows(
*/
public abstract Trigger<T, W> getDefaultTrigger();
+ /** Returns the default async trigger associated with this {@code
WindowAssigner}. */
+ public AsyncTrigger<T, W> getDefaultAsyncTrigger() {
Review Comment:
WindowAssigner is stateless, I think it is not a must to introudce a async
version.
Differently, Trigger is bind with state operation, and I need to introduce
an async Trigger.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]