@rotorsoft/act-tck 1.13.2 → 1.14.0
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.
- package/dist/.tsbuildinfo +1 -1
- package/dist/@types/index.d.ts +2 -0
- package/dist/@types/index.d.ts.map +1 -1
- package/dist/@types/store-property-tck.d.ts +22 -0
- package/dist/@types/store-property-tck.d.ts.map +1 -0
- package/dist/@types/store-tck.d.ts +11 -0
- package/dist/@types/store-tck.d.ts.map +1 -1
- package/dist/index.cjs +601 -366
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +511 -277
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
|
@@ -29,6 +29,17 @@ export type StoreCapabilities = {
|
|
|
29
29
|
* path, idempotency, and isolation across streams.
|
|
30
30
|
*/
|
|
31
31
|
readonly pii_isolation?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Adapter supports competing consumers — two workers may call
|
|
34
|
+
* `claim()` concurrently and the store hands each stream to at most
|
|
35
|
+
* one of them (PostgreSQL via `FOR UPDATE SKIP LOCKED`; the in-memory
|
|
36
|
+
* store via single-threaded atomic claim). When `true`, the TCK runs
|
|
37
|
+
* the concurrency suite. Single-writer embedded stores (e.g. SQLite,
|
|
38
|
+
* where concurrent write transactions raise `SQLITE_BUSY` rather than
|
|
39
|
+
* serializing) leave this `false`: their deployment model is a single
|
|
40
|
+
* drain worker per database file.
|
|
41
|
+
*/
|
|
42
|
+
readonly concurrent_claim?: boolean;
|
|
32
43
|
};
|
|
33
44
|
/**
|
|
34
45
|
* Options for {@link runStoreTck}.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"store-tck.d.ts","sourceRoot":"","sources":["../../src/store-tck.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAQV,KAAK,EAEN,MAAM,sBAAsB,CAAC;AAc9B;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;;;;OAKG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;;;OAMG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC;IAC3B;;;;;;;OAOG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"store-tck.d.ts","sourceRoot":"","sources":["../../src/store-tck.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAQV,KAAK,EAEN,MAAM,sBAAsB,CAAC;AAc9B;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;;;;OAKG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;;;OAMG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC;IAC3B;;;;;;;OAOG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,OAAO,CAAC;IACjC;;;;;;;;;OASG;IACH,QAAQ,CAAC,gBAAgB,CAAC,EAAE,OAAO,CAAC;CACrC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;;;;;;OAOG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IAC/C;;OAEG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,iBAAiB,CAAC;CAC3C,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,eAAO,MAAM,WAAW,GAAI,SAAS,eAAe,KAAG,IAq6EtD,CAAC"}
|