X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fui%2Faccount_summary%2FAccountSummaryViewModel.java;h=92b6b8d7ad97abc3feab9cb91b92571e797d68ce;hp=574665b05633349c826dd875a7558b139222a690;hb=83cac114e375728080194fb09758b49c50a8119b;hpb=9f35f59fcffd6b9778b36bf31f8b94d91411664f diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java b/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java index 574665b0..92b6b8d7 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java @@ -1,24 +1,24 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of Mobile-Ledger. - * Mobile-Ledger is free software: you can distribute it and/or modify it + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it * under the term of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your opinion), any later version. * - * Mobile-Ledger is distributed in the hope that it will be useful, + * MoLe is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License terms for details. * * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.ui.account_summary; -import android.arch.lifecycle.ViewModel; import android.content.Context; +import android.os.AsyncTask; import android.util.Log; import net.ktnx.mobileledger.async.CommitAccountsTask; @@ -29,17 +29,19 @@ import net.ktnx.mobileledger.model.LedgerAccount; import java.util.ArrayList; -class AccountSummaryViewModel extends ViewModel { +import androidx.lifecycle.ViewModel; + +public class AccountSummaryViewModel extends ViewModel { static void commitSelections(Context context) { CAT task = new CAT(); - task.execute( - new CommitAccountsTaskParams(Data.accounts.get(), Data.optShowOnlyStarred.get())); + task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, + new CommitAccountsTaskParams(Data.accounts, Data.optShowOnlyStarred.get())); } - static void scheduleAccountListReload() { + static public void scheduleAccountListReload() { if (Data.profile.get() == null) return; UAT task = new UAT(); - task.execute(); + task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); } @@ -49,7 +51,7 @@ class AccountSummaryViewModel extends ViewModel { super.onPostExecute(list); if (list != null) { Log.d("acc", "setting updated account list"); - Data.accounts.set(list); + Data.accounts.setList(list); } } } @@ -60,7 +62,7 @@ class AccountSummaryViewModel extends ViewModel { super.onPostExecute(list); if (list != null) { Log.d("acc", "setting new account list"); - Data.accounts.set(list); + Data.accounts.setList(list); } } }