api: cffi: add dc_accounts_background_fetch_with_timeout

This commit is contained in:
Simon Laux
2023-12-12 01:26:36 +01:00
committed by bjoern
parent d2c61dc90e
commit f7903df805
2 changed files with 42 additions and 0 deletions

View File

@@ -3151,6 +3151,20 @@ void dc_accounts_maybe_network (dc_accounts_t* accounts);
void dc_accounts_maybe_network_lost (dc_accounts_t* accounts);
/**
* Perform a Background fetch for all accounts in parallel with a timeout.
* Pauses the scheduler, fetches messages from imap and then resumes the scheduler.
*
* dc_accounts_background_fetch_with_timeout() was created for the iOS Background fetch.
*
* @memberof dc_accounts_t
* @param timeout The timeout in seconds
* @return Return 1 on success and 0 on failure (like timeout)
* But note that this only indicates that the fetch of all accounts was done before the timeout.
* To know wether it worked you need to look for the events.
*/
int dc_accounts_background_fetch_with_timeout (dc_accounts_t* accounts, uint64_t timeout);
/**
* Create the event emitter that is used to receive events.
*