Android Realm ChangeListener not being triggered
I've got a Realm results change listener that isn't being triggered, here's the code: final RealmResults<LogEntry> entries = realm.where(LogEntry.class).findAll(); entries.addChangeListener(new RealmChangeListener<RealmResults<LogEntry>>() { @Override public void onChange(RealmResults<LogEntry> results) { Log.v("Testing", "The size is: " + results.size()); } }); There is definitely new stuff being added, I have a log on the realm insertion printing out the new size of the table, yet for some reason the change listener does nothing? Am I missing something here, it seems identical to the docs.