pardom-zz / ActiveAndroid

Active record style SQLite persistence for Android
http://www.activeandroid.com
4.7k stars 1.03k forks source link

notifyChange after every operation #447

Open oFFca opened 8 years ago

oFFca commented 8 years ago

Hi, After every operation like save, update, delete etc. there called: Cache.getContext().getContentResolver() .notifyChange(ContentProvider.createUri(mTableInfo.getType(), mId), null);

When I have ContentObserver and save 200 rows, I get 200 times onChange. For me better option will be possibility to send notify after endTransaction().