Thanks for this implementation, this is really useful.
I just wanted to raise the fact that the round robin publication from the EventBus does not seem to be managed. Indeed, the ZKAsyncMultiMap.get() method create a new ChoosableSet each time. It means the ChoosableSet.choose() method returns always the same element.
It might be great to implement a round-robin strategy (by caching the ChoosableSet for instance to make sure a new instance is not created each time?).
Hello,
Thanks for this implementation, this is really useful.
I just wanted to raise the fact that the round robin publication from the EventBus does not seem to be managed. Indeed, the ZKAsyncMultiMap.get() method create a new ChoosableSet each time. It means the ChoosableSet.choose() method returns always the same element.
It might be great to implement a round-robin strategy (by caching the ChoosableSet for instance to make sure a new instance is not created each time?).
Thanks