I am new to hibernate search and i am using hibernate search 5.3 for my application. I have a cluster of servers which should maintain a lucene index and if there's a change in entitty, I am trying to put it in a jms queue and let all the other servers to extract the updates from here and reindex their lucene indexes .
I have written a searchInterceptor which would pick up the entities after every transaction and send them to a topic. I had extended FullTextIndexEventListener and implemented the processWork() to add messages in the queue, i am stuck now because this is made final now. Can any one tell me how to proceed from here?