essobedo opened a new pull request, #8529: URL: https://github.com/apache/camel/pull/8529
Fix for https://issues.apache.org/jira/browse/CAMEL-16030 ## Motivation The producer is synchronous today. But pulsar allows sending asynchronously, where a `CompletableFuture` is returned. We can leverage this for async send, and call `AsyncCallback` from the future. ## Modifications: * Make `PulsarProducer` extend `DefaultAsyncProducer` and implement the corresponding `process` method * Ensure the thread safety of the producer initialization (not directly related to the initial issue) * Deprecate the option `maxPendingMessagesAcrossPartitions` as it is deprecated in the pulsar client -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org