This is an automated email from the ASF dual-hosted git repository.
karp pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq-streams.git
from 608ccaec Merge pull request #264 from ni-ze/develop
new c86a723e add watermark in session window
new 14c94880 modify the constant
new fb1a307e persist watermark after fired.
new 7c0ceee4 Merge pull request #266 from ni-ze/develop
The 735 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../rocketmq/streams/core/common/Constant.java | 2 +-
.../supplier/JoinWindowAggregateSupplier.java | 7 ++-
.../supplier/WindowAccumulatorSupplier.java | 14 +++--
.../function/supplier/WindowAggregateSupplier.java | 14 +++--
.../streams/core/rstream/GroupedStreamImpl.java | 14 ++---
.../streams/core/rstream/WindowStreamImpl.java | 10 ++--
.../core/running/AbstractWindowProcessor.java | 10 +++-
.../streams/core/running/WorkerThread.java | 7 +--
.../rocketmq/streams/core/state/RocketMQStore.java | 2 +-
.../rocketmq/streams/core/state/RocksDBStore.java | 21 +++-----
.../streams/core/util/OperatorNameMaker.java | 22 ++++----
.../apache/rocketmq/streams/core/util/Utils.java | 16 ++++++
.../core/window/fire/AbstractWindowFire.java | 59 ++++++++++++++++++++++
.../window/fire/AccumulatorSessionWindowFire.java | 18 ++-----
.../core/window/fire/AccumulatorWindowFire.java | 19 ++-----
.../window/fire/AggregateSessionWindowFire.java | 16 ++----
.../core/window/fire/AggregateWindowFire.java | 18 ++-----
.../streams/core/window/fire/IdleWindowScaner.java | 12 ++---
.../streams/core/window/fire/JoinWindowFire.java | 26 +++++++---
.../rocketmq/streams/examples/pojo/Demo.java | 1 -
.../streams/examples/sink/WordCountSink.java | 1 -
.../examples/window/SessionWindowCount.java | 2 -
.../streams/examples/window/SlideWindowCount.java | 3 --
.../streams/examples/window/WindowCount.java | 3 --
.../streams/examples/window/WindowWordCount.java | 1 -
25 files changed, 180 insertions(+), 138 deletions(-)
create mode 100644
core/src/main/java/org/apache/rocketmq/streams/core/window/fire/AbstractWindowFire.java