Experimental performance improvement

This commit is contained in:
Niels Andriesse 2021-05-24 16:10:27 +10:00
parent 550d8b61c7
commit e674e40959
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ public abstract class Database {
public Database(Context context, SQLCipherOpenHelper databaseHelper) {
this.context = context;
this.databaseHelper = databaseHelper;
this.threadNotificationDebouncer = new Debouncer(ApplicationContext.getInstance(context).getThreadNotificationHandler(), 100);
this.threadNotificationDebouncer = new Debouncer(ApplicationContext.getInstance(context).getThreadNotificationHandler(), 250);
}
protected void notifyConversationListeners(Set<Long> threadIds) {