diff options
author | stephan <stephan@noemail.net> | 2025-02-20 04:14:26 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-02-20 04:14:26 +0000 |
commit | a32ea731a0cab7bf643b97b207d4d70611a42d30 (patch) | |
tree | ba8bc78783ad34732172c58a92462add294ad63c /ext/wasm/api/sqlite3-worker1-promiser.c-pp.js | |
parent | f8a9f455956933e08d7f5c5d7f409906c7391862 (diff) | |
parent | cee760907489075386e27c37fe6c86c835604857 (diff) | |
download | sqlite-a32ea731a0cab7bf643b97b207d4d70611a42d30.tar.gz sqlite-a32ea731a0cab7bf643b97b207d4d70611a42d30.zip |
Add the pause/unpause capability to the opfs-sahpool VFS, as discussed in [forum:fe8cdb8431c|forum thread fe8cdb8431c]. Summary: this gives clients a way to eke some degree of multi-page/tab/Worker concurrency out of this VFS but requires that coordination to be implemented client-side, e.g. via a SharedWorker or WebLocks.
FossilOrigin-Name: b5dbd521951e129b4dec69f191a872500dbf387b34a8479ad58b053ffcccbab9
Diffstat (limited to 'ext/wasm/api/sqlite3-worker1-promiser.c-pp.js')
-rw-r--r-- | ext/wasm/api/sqlite3-worker1-promiser.c-pp.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/wasm/api/sqlite3-worker1-promiser.c-pp.js b/ext/wasm/api/sqlite3-worker1-promiser.c-pp.js index 55e497ead..c043fd148 100644 --- a/ext/wasm/api/sqlite3-worker1-promiser.c-pp.js +++ b/ext/wasm/api/sqlite3-worker1-promiser.c-pp.js @@ -335,8 +335,8 @@ sqlite3Worker1Promiser.v2 = function(config){ /** When built as a module, we export sqlite3Worker1Promiser.v2() instead of sqlite3Worker1Promise() because (A) its interface is more - conventional for ESM usage and (B) the ESM option export option for - this API did not exist until v2 was created, so there's no backwards + conventional for ESM usage and (B) the ESM export option for this + API did not exist until v2 was created, so there's no backwards incompatibility. */ export default sqlite3Worker1Promiser.v2; |