I need to implement the idempotent consumer pattern in Camel (2.23.0) and was looking at possible implementations. Currently, I am only able to implement either the JdbcMessageIdRepository or JpaMessageIdRepository and was wondering if these implementations are thread-safe when handling concurrent requests? I inspected the source code of these classes in the Camel Github, but could not find any code preventing/handling concurrent access.
Can anybody confirm this? Thx very much!