Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ private void shouldMigrateTimestampedKeyValueStoreToTimestampedKeyValueStoreWith
final StreamsBuilder streamsBuilderForNewStore = new StreamsBuilder();

streamsBuilderForNewStore.addStateStore(
Stores.timestampedKeyValueStoreBuilderWithHeaders(
Stores.timestampedKeyValueStoreWithHeadersBuilder(
persistentStore ? Stores.persistentTimestampedKeyValueStoreWithHeaders(STORE_NAME) : Stores.inMemoryKeyValueStore(STORE_NAME),
Serdes.String(),
Serdes.String()))
Expand Down Expand Up @@ -222,7 +222,7 @@ public void shouldProxyTimestampedKeyValueStoreToTimestampedKeyValueStoreWithHea
final StreamsBuilder streamsBuilderForNewStore = new StreamsBuilder();

streamsBuilderForNewStore.addStateStore(
Stores.timestampedKeyValueStoreBuilderWithHeaders(
Stores.timestampedKeyValueStoreWithHeadersBuilder(
Stores.persistentTimestampedKeyValueStore(STORE_NAME),
Serdes.String(),
Serdes.String()))
Expand Down Expand Up @@ -288,7 +288,7 @@ private void shouldMigratePlainKeyValueStoreToTimestampedKeyValueStoreWithHeader
final StreamsBuilder streamsBuilderForNewStore = new StreamsBuilder();

streamsBuilderForNewStore.addStateStore(
Stores.timestampedKeyValueStoreBuilderWithHeaders(
Stores.timestampedKeyValueStoreWithHeadersBuilder(
persistentStore ? Stores.persistentTimestampedKeyValueStoreWithHeaders(STORE_NAME) : Stores.inMemoryKeyValueStore(STORE_NAME),
Serdes.String(),
Serdes.String()))
Expand Down Expand Up @@ -341,7 +341,7 @@ public void shouldProxyPlainKeyValueStoreToTimestampedKeyValueStoreWithHeadersUs
final StreamsBuilder streamsBuilderForNewStore = new StreamsBuilder();

streamsBuilderForNewStore.addStateStore(
Stores.timestampedKeyValueStoreBuilderWithHeaders(
Stores.timestampedKeyValueStoreWithHeadersBuilder(
Stores.persistentKeyValueStore(STORE_NAME),
Serdes.String(),
Serdes.String()))
Expand Down Expand Up @@ -1563,7 +1563,7 @@ private void produceRecordWithHeaders(final String key, final String value, fina
private void setupAndPopulateKeyValueStoreWithHeaders(final Properties props) throws Exception {
final StreamsBuilder headersBuilder = new StreamsBuilder();
headersBuilder.addStateStore(
Stores.timestampedKeyValueStoreBuilderWithHeaders(
Stores.timestampedKeyValueStoreWithHeadersBuilder(
Stores.persistentTimestampedKeyValueStoreWithHeaders(STORE_NAME),
Serdes.String(),
Serdes.String()))
Expand Down Expand Up @@ -1622,7 +1622,7 @@ private void shouldMigrateSessionStoreToSessionStoreWithHeaders(final boolean is
final StreamsBuilder newBuilder = new StreamsBuilder();
final AtomicReference<SessionWithHeadersProcessor> processorRef = new AtomicReference<>();
newBuilder.addStateStore(
Stores.sessionStoreBuilderWithHeaders(
Stores.sessionStoreWithHeadersBuilder(
isPersistent ? Stores.persistentSessionStoreWithHeaders(SESSION_STORE_NAME, Duration.ofMillis(RETENTION_MS)) :
Stores.inMemorySessionStore(SESSION_STORE_NAME, Duration.ofMillis(RETENTION_MS)),
Serdes.String(),
Expand Down Expand Up @@ -1680,7 +1680,7 @@ public void shouldProxySessionStoreToSessionStoreWithHeaders() throws Exception
final StreamsBuilder newBuilder = new StreamsBuilder();
final AtomicReference<SessionWithHeadersProcessor> processorRef = new AtomicReference<>();
newBuilder.addStateStore(
Stores.sessionStoreBuilderWithHeaders(
Stores.sessionStoreWithHeadersBuilder(
Stores.persistentSessionStore(SESSION_STORE_NAME, Duration.ofMillis(RETENTION_MS)), // non-headers supplier!
Serdes.String(),
Serdes.String()))
Expand Down Expand Up @@ -1941,7 +1941,7 @@ private void setupAndPopulateSessionStoreWithHeaders(final Properties props) thr
final StreamsBuilder headersBuilder = new StreamsBuilder();
final AtomicReference<SessionWithHeadersProcessor> processorRef = new AtomicReference<>();
headersBuilder.addStateStore(
Stores.sessionStoreBuilderWithHeaders(
Stores.sessionStoreWithHeadersBuilder(
Stores.persistentSessionStoreWithHeaders(SESSION_STORE_NAME, Duration.ofMillis(RETENTION_MS)),
Serdes.String(),
Serdes.String()))
Expand Down
Loading
Loading