Interface KErrorStreamX<K,V,KR,VR>
- Type Parameters:
K- type of keys in the originalKStreamXV- type of values in the originalKStreamXKR- type of keys in the processedKStreamXVR- type of values in the processedKStreamX
public interface KErrorStreamX<K,V,KR,VR>
KStreamX that contains successfully processed records and errors of a previous operation-
Method Summary
Modifier and TypeMethodDescriptionerrors()Get the stream of errors that occurred during processingerrors(org.apache.kafka.streams.kstream.Named named) Get the stream of errors that occurred during processingvalues()Get the stream of successfully processed valuesvalues(org.apache.kafka.streams.kstream.Named named) Get the stream of successfully processed values
-
Method Details
-
values
Get the stream of successfully processed values- Returns:
- stream of processed values
-
values
Get the stream of successfully processed values- Parameters:
named- name of the processor- Returns:
- stream of processed values
-
errors
Get the stream of errors that occurred during processing- Returns:
- stream of errors
-
errors
KStreamX<K,com.bakdata.kafka.ProcessingError<V>> errors(org.apache.kafka.streams.kstream.Named named) Get the stream of errors that occurred during processing- Parameters:
named- name of the processor- Returns:
- stream of errors
-