inponomarev commented on a change in pull request #9107:
URL: https://github.com/apache/kafka/pull/9107#discussion_r548621313
##########
File path:
streams/src/main/java/org/apache/kafka/streams/kstream/internals/KStreamImpl.java
##########
@@ -492,6 +496,16 @@ public void foreach(final ForeachAction<? super K, ? super
V> action,
return branchChildren;
}
+ @Override
+ public BranchedKStream<K, V> split() {
+ return new BranchedKStreamImpl<>(this, repartitionRequired,
NamedInternal.empty());
+ }
+
+ @Override
+ public BranchedKStream<K, V> split(final Named named) {
+ return new BranchedKStreamImpl<>(this, repartitionRequired, new
NamedInternal(named));
Review comment:
done
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]