Skip to content

Instantly share code, notes, and snippets.

@lmonkiewicz
Created February 15, 2022 17:17
Show Gist options
  • Select an option

  • Save lmonkiewicz/bf7175af58c90ce02c269d0a1b7cb64c to your computer and use it in GitHub Desktop.

Select an option

Save lmonkiewicz/bf7175af58c90ce02c269d0a1b7cb64c to your computer and use it in GitHub Desktop.
@Configuration
public class PartitionExampleConfiguration {
@Bean
public Function<
KStream<String, ExampleValue>, KStream<String, ExampleValue>> transform() {
return kstream -> kstream.selectKey((key, value) -> value.getSomeProperty());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment