I have a single member that has a MapStore/Loader that reads/writes to a database and also a client that adds an EntryAddedListener listener.
If the member is bounced, I see entry added listeners being fired, as the MapLoader reloads the data from database.
However this suggests to the client that new entries have been added, whereas in fact, they are only being "added" because of the node bootstrapping up.
Basically I don't want these listeners to be fired as a result of the MapLoader bootstrapping the map - they should only be fired afterwards.
How do I stop these MapLoader events firing off EntryAdded listeners?