Replies: 1 comment
-
No, the emitter will only tell you when the write has been acknowledged by the broker. If you need the metadata, you can use the underlying kafka client. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I'm using pure KafkaClient then the
producer.send()
returnsFuture<RecordMetadata>
. In MP reactive messaging theemitter.send()
returnsCompletableFuture<Void>
.Is there any way in MP reactive messaging to access the result of send?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions