Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Users who want to keep the current behavior can prepend a .filter() operator to the aforementioned operators and filter accordingly.

E.g.

//new if old behavior is needed
leftStream.filter((key, value) -> key != null)
.leftJoin(rightStream, (lv, rv) -> join(lv, rv), windows);

...