@Bean
public Function<KStream<String, String>, KTable<String, String>> process() {
}
and
@Bean
public Function<KTable<String, String>, KStream<String, String>> anotherProcess() {
}
Then it should be possible to compose them using the syntax process|anotherProcess. If the business logic inside a single function is complex and harder to read/understand, then that single function can be split into multiple ones and composed to be tested individually and may be reused. `
If I have two functions of the form,
and
Then it should be possible to compose them using the syntax
process|anotherProcess
. If the business logic inside a single function is complex and harder to read/understand, then that single function can be split into multiple ones and composed to be tested individually and may be reused. `