Github user ilganeli commented on a diff in the pull request:
https://github.com/apache/apex-malhar/pull/316#discussion_r66509455
--- Diff:
library/src/main/java/com/datatorrent/lib/window/WindowOption.java ---
@@ -0,0 +1,143 @@
+package com.datatorrent.lib.window;
+
+import java.util.LinkedList;
+import java.util.List;
+
+/**
+ *
+ */
+public abstract class WindowOption
+{
+
+ private TriggerOption[] triggerOptions;
+
+ private AccumulationMode accumulationMode = AccumulationMode.ACCUMULATE;
+
+ private List<Object[]> lateness = new LinkedList<>();
--- End diff --
Does it make sense for this to be a set, rather than a list? The same
window may be added multiple times but we should only calcualte it once.
---
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.
---