dexie-cloud-addon 4.4.10 → 4.4.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,10 +8,11 @@
8
8
  * Uses Dexie.waitFor() only for explicit rw transactions to keep them alive.
9
9
  * For readonly or implicit transactions, resolves directly (no waitFor needed).
10
10
  *
11
- * Resolved blobs are queued for saving via BlobSavingQueue, which uses
12
- * setTimeout(fn, 0) to completely isolate from Dexie's transaction context.
13
- * Each blob is saved atomically using Table.update() with its keyPath to
14
- * avoid race conditions with other property changes.
11
+ * Resolved blobs are persisted via db.blobDownloadTracker.enqueueSave(),
12
+ * which internally uses a queue that runs in a fresh JS task to completely
13
+ * isolate from Dexie's transaction context. Each blob is saved atomically
14
+ * using Table.update() with its keyPath to avoid race conditions with other
15
+ * property changes.
15
16
  *
16
17
  * Blob downloads use Authorization header (same as sync) via the server
17
18
  * proxy endpoint: GET /blob/{ref}