We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51c78cb commit 855e3a4Copy full SHA for 855e3a4
docs/mutable-store/building/implementations/bookkeeper.md
@@ -4,7 +4,7 @@
4
interface Bookkeeper<Key : Any> {
5
companion object {
6
fun <Key : Any> by(
7
- maxLastFailedSync: suspend (key: Key) -> Long?,
+ getLastFailedSync: suspend (key: Key) -> Long?,
8
setLastFailedSync: suspend (key: Key, timestamp: Long) -> Boolean,
9
clear: suspend (key: Key) -> Boolean,
10
clearAll: suspend () -> Boolean
@@ -101,4 +101,4 @@ private fun BookkeepingDatabase.maxLastFailedSync(notes: List<Note>): Long? {
101
}
102
return maxLastFailedSync
103
104
-```
+```
0 commit comments