setNextRetryAt method
Set the next eligible retry time for backoff scheduling.
Implementation
@override
Future<void> setNextRetryAt(String id, DateTime nextRetryAt) async {
await _db.customStatement(
'UPDATE dynos_sync_queue SET next_retry_at = ? WHERE id = ?',
[nextRetryAt.millisecondsSinceEpoch, id],
);
}