How to get correlation id in Spring Cloud Stream

Spring Team, The below producer is able to send the values to a kafka topic successfully. @Bean Supplier<Flux<Integer>> someProducer(){ return () -> Flux.range(1, 10); } But..how do we get the correlation id of the message produced as we get using ReactiveKafkaSender? Since the flux is subscribed by Spring internally, Is there any way to get?… Read More How to get correlation id in Spring Cloud Stream