-
-
Notifications
You must be signed in to change notification settings - Fork 641
Dexie.waitFor()
Since Dexie 2.0.0-beta.5
Dexie.waitFor(promise, timeout=60000)
This method makes it possible execute asynchronic non-indexedDB work while still keeping current transaction alive. Use with causion as it may put unnecessary CPU load on the browser. A separate task will keep the transaction alive by propagating dummy-requests on the transaction while the given promise is being executed.
This method kind of violate a "holy principle" with IndexedDB. At the same time, it is in line with the new indexeddb-promises proposal where this will be possible. So in a future version if the proposal goes live, Dexie will start ride upon that new API if the browser supports it.
WARNING: This method can be CPU intensive while waiting for given Promise. Until indexeddb-promises is implemented in the browser, this method needs to keep querying the transaction for a dummy item over and over while waiting. Can trigger about 1000 queries while waiting for just 100 milliseconds.
NOTE: indexeddb-promises currently has a slightly different method, waitUntil(), that works almost like this method, except that transaction is committed once the promise completes (as the proposal is today). The reason for naming it differently in Dexie is to distinguish it from the proposal's behavior.
function sleep (ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
await db.transaction('rw', db.friends, async ()=> {
await Dexie.waitFor(sleep(100)); // Sleeps 100 milliseconds
await db.friends.put({id: 1, name: "Åke"});
await Dexie.waitFor(sleep(100)); // Sleeps 100 milliseconds
let theMan = await db.friends.get(1);
alert (`I still got the man: ${theMan.name}`);
});
function sleep (ms) {
return new Promise(function (resolve) { setTimeout(resolve, ms); });
}
db.transaction('rw', db.friends, function () {
Dexie.waitFor(sleep(100)).then(function () {
return db.friends.put({id: 1, name: "Åke"});
}).then(function () {
return Dexie.waitFor(sleep(100));
}).then(function () {
return db.friends.get(1);
}).then(function (theMan) {
alert ('I still got the man: ' + theMan.name);
});
})
The above samples shows that you can wait for non-IndexedDB Promises to complete while still keeping transaction alive. You can replace sleep() with WebCrypto calls, fetch() or $.ajax(). When Dexie.waitFor()
resolves it is guaranteed that the transaction will be in an active state and possible to continue working on. Note however that while the given promise is being executed, the transaction may not be guaranteed to be in an active state (may temporarily be inactive), so the operation must NOT involve operations on the transaction. But when the waitFor() promise resolves, the transaction is guaranteed to be in active state again.
await db.transaction('rw', db.friends, async ()=> {
await Dexie.waitFor(mixedOperations());
async function mixedOperations () {
await sleep(100);
await db.friends.get(1)
.catch('TransactionInactiveError', ex => {
// This will happen!
});
}
await db.friends.get(1); // Will succeed though.
});
What to keep in mind is this:
- Don't access your own transaction in the operation you wait for using Dexie.waitFor().
- Just access non-IndexedDB work, OR another transaction separate from your own. For example, you MAY start a new top-level transaction or wait on other databases
// We are only locking db.friends initially. But then later in the flow,
// we also lock db.pets to include it as we need it as well.
db.transaction('r', db.friends, () => {
return db.friends.get({name: "Bert"}).then (bert => {
return Dexie.waitFor(db.transaction('r!', db.pets, async () => {
// Locked with exclamation mark ('r!') meaning new top-level transaction.
return db.pets.where({owner: bert.id}).toArray();
})).then(bertsPets => {
bert.pets = bertsPets;
return bert;
});
}).then(bertWithPets => {
// bertWithPets is now a "friend" with a 'pets' property added to it, that
// is an array of the pets that is owned by Bert.
});
});
Dexie.waitFor() can also be used when your code is not executing within a transaction. It will then just be equaivalent to Promise.resolve(). This can be useful if you write code that does not encapsulate through transaction by itself, but may be encapsulated in a transaction by the caller. By using Dexie.waitFor() you ensure that non-indexedDB operations will keep any existing transaction alive in case caller has encapsulated your code in a transaction.
Dexie.js - minimalistic and bullet proof indexedDB library