Github user ramkrish86 commented on a diff in the pull request:
https://github.com/apache/flink/pull/2301#discussion_r72417872
--- Diff:
flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/AbstractUdfStreamOperator.java
---
@@ -55,13 +56,18 @@
/** the user function */
protected final F userFunction;
+
+ protected EventTimeFunction eventTimeFunction;
/** Flag to prevent duplicate function.close() calls in close() and
dispose() */
private transient boolean functionsClosed = false;
public AbstractUdfStreamOperator(F userFunction) {
this.userFunction = requireNonNull(userFunction);
+ if(userFunction instanceof EventTimeFunction) {
--- End diff --
I got that. It is Ctrl+Shift+L here.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---