Skip to content
Open
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
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
junit = "5.13.3"
mockito = "5.18.0"
testcontainers = "1.21.3"
kafkaUtils = "1.2.1"
kafkaUtils = "1.2.2-SNAPSHOT"

[libraries]
kafka-bom = { group = "com.bakdata.kafka", name = "kafka-bom", version.ref = "kafkaUtils" }
Expand All @@ -17,7 +17,7 @@ kafka-streams-avro-serde = { group = "io.confluent", name = "kafka-streams-avro-
kafka-protobuf-provider = { group = "io.confluent", name = "kafka-protobuf-provider" }
largeMessage-bom = { group = "com.bakdata.kafka", name = "large-message-bom", version = "3.1.0" }
largeMessage-core = { group = "com.bakdata.kafka", name = "large-message-core" }
errorHandling-bom = { group = "com.bakdata.kafka", name = "error-handling-bom", version = "2.0.0" }
errorHandling-bom = { group = "com.bakdata.kafka", name = "error-handling-bom", version = "2.0.1-SNAPSHOT" }
errorHandling-core = { group = "com.bakdata.kafka", name = "error-handling-core" }
picocli = { group = "info.picocli", name = "picocli", version = "4.7.7" }
slf4j = { group = "org.slf4j", name = "slf4j-api", version = "2.0.17" }
Expand All @@ -33,7 +33,7 @@ mockito-core = { group = "org.mockito", name = "mockito-core", version.ref = "mo
mockito-junit = { group = "org.mockito", name = "mockito-junit-jupiter", version.ref = "mockito" }
testcontainers-junit = { group = "org.testcontainers", name = "junit-jupiter", version.ref = "testcontainers" }
testcontainers-kafka = { group = "org.testcontainers", name = "kafka", version.ref = "testcontainers" }
fluentKafkaStreamsTests = { group = "com.bakdata.fluent-kafka-streams-tests", name = "fluent-kafka-streams-tests-junit5", version = "3.4.1" }
fluentKafkaStreamsTests = { group = "com.bakdata.fluent-kafka-streams-tests", name = "fluent-kafka-streams-tests-junit5", version = "3.4.2-SNAPSHOT" }
log4j-slf4j2 = { group = "org.apache.logging.log4j", name = "log4j-slf4j2-impl", version = "2.25.1" }
awaitility = { group = "org.awaitility", name = "awaitility", version = "4.3.0" }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ <GK, GV, RV> KStreamX<K, RV> leftJoin(GlobalKTable<GK, GV> globalTable,

@Override
<KOut, VOut> KStreamX<KOut, VOut> process(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
String... stateStoreNames);

/**
Expand All @@ -866,7 +866,7 @@ <KOut, VOut> KStreamX<KOut, VOut> process(
* @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier)
*/
<KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
String... stateStoreNames);

/**
Expand All @@ -883,13 +883,13 @@ <KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
* @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier, java.util.function.Predicate)
*/
<KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
java.util.function.Predicate<Exception> errorFilter,
String... stateStoreNames);

@Override
<KOut, VOut> KStreamX<KOut, VOut> process(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
Named named, String... stateStoreNames);

/**
Expand All @@ -906,7 +906,7 @@ <KOut, VOut> KStreamX<KOut, VOut> process(
* @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier)
*/
<KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
Named named, String... stateStoreNames);

/**
Expand All @@ -924,13 +924,13 @@ <KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
* @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier, java.util.function.Predicate)
*/
<KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
java.util.function.Predicate<Exception> errorFilter,
Named named, String... stateStoreNames);

@Override
<VOut> KStreamX<K, VOut> processValues(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
String... stateStoreNames);

/**
Expand All @@ -947,7 +947,7 @@ <VOut> KStreamX<K, VOut> processValues(
* @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier)
*/
<VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
String... stateStoreNames);

/**
Expand All @@ -965,13 +965,13 @@ <VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
* @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier, java.util.function.Predicate)
*/
<VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
java.util.function.Predicate<Exception> errorFilter,
String... stateStoreNames);

@Override
<VOut> KStreamX<K, VOut> processValues(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
Named named, String... stateStoreNames);

/**
Expand All @@ -989,7 +989,7 @@ <VOut> KStreamX<K, VOut> processValues(
* @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier)
*/
<VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
Named named, String... stateStoreNames);

/**
Expand All @@ -1008,7 +1008,7 @@ <VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
* @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier, java.util.function.Predicate)
*/
<VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
java.util.function.Predicate<Exception> errorFilter,
Named named, String... stateStoreNames);
}
Loading
Loading