Rename and improve doc. on method

This commit is contained in:
Chris Heywood 2020-01-09 13:07:17 +01:00
parent d019d7ae9f
commit 7dfe2971c6
4 changed files with 10 additions and 8 deletions

View file

@ -1792,7 +1792,7 @@ internal class Application.Controller : Geary.BaseObject {
debug("Checking for backgrounded idle work");
foreach (AccountContext context in this.accounts.values) {
Geary.Account account = context.account;
account.app_backgrounded_cleanup.begin(context.cancellable);
account.cleanup_storage.begin(context.cancellable);
}
}

View file

@ -520,12 +520,14 @@ public abstract class Geary.Account : BaseObject, Logging.Source {
}
/**
* Run account cleanup work if the appropriate interval has past since
* last execution. Alternatively if the interval has not past but vacuum
* GC has been flagged to run this will be executed. Designed to be run
* Perform cleanup of account storage.
*
* Work is performed if the appropriate interval has past since last
* execution. Alternatively if the interval has not past but vacuum GC
* has been flagged to run this will be executed. Designed to be run
* while the app is in the background and idle.
*/
public abstract async void app_backgrounded_cleanup(Cancellable? cancellable);
public abstract async void cleanup_storage(Cancellable? cancellable);
/** Fires a {@link opened} signal. */
protected virtual void notify_opened() {

View file

@ -531,8 +531,8 @@ private abstract class Geary.ImapEngine.GenericAccount : Geary.Account {
}
/** {@inheritDoc} */
public override async void app_backgrounded_cleanup(Cancellable? cancellable) {
debug("Backgrounded cleanup check for %s account", this.information.display_name);
public override async void cleanup_storage(Cancellable? cancellable) {
debug("Backgrounded storage cleanup check for %s account", this.information.display_name);
DateTime now = new DateTime.now_local();
DateTime? last_cleanup = this.last_storage_cleanup;

View file

@ -274,7 +274,7 @@ public class Geary.MockAccount : Account, MockObject {
);
}
public override async void app_backgrounded_cleanup(Cancellable? cancellable) {
public override async void cleanup_storage(Cancellable? cancellable) {
}
}