Versions Compared

Key

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

...

Code Block
titleMethods Added to StreamJoined
public StreamJoined<K, V1, V2> withLoggingEnabled(final WindowBytesStoreSupplier otherStoreSupplier) {}

public StreamJoined<K, V1, V2> withLoggingDisabled(final WindowBytesStoreSupplier otherStoreSupplier) {}

Proposed Changes

We will add two new methods to StreamJoined to allow users to determine whether they want logging for their stores. This config sets the logging decision for both stores, meaning that if logging is disabled for thisWindowStore, it will also be disabled for otherWindowStore. The default value for loggingEnabled will be true, enabling logging for both stores if the user does not set the values manually.

...