@cadenza.io/service 1.25.6 → 1.25.8
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/index.d.mts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +1 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -22079,7 +22079,6 @@ declare class CadenzaService {
|
|
|
22079
22079
|
* Creates and configures a signal transmission task that handles the transmission
|
|
22080
22080
|
* of a specified signal to a target service with a set of customizable options.
|
|
22081
22081
|
* This is only used for internal purposes and is not exposed to the business logic layer.
|
|
22082
|
-
* Signal transmission is throttled by execution trace id to ensure the transmission and reception order is preserved.
|
|
22083
22082
|
*
|
|
22084
22083
|
* @param {string} signalName - The name of the signal to be transmitted.
|
|
22085
22084
|
* @param {string} serviceName - The name of the target service to transmit the signal to.
|
package/dist/index.d.ts
CHANGED
|
@@ -22079,7 +22079,6 @@ declare class CadenzaService {
|
|
|
22079
22079
|
* Creates and configures a signal transmission task that handles the transmission
|
|
22080
22080
|
* of a specified signal to a target service with a set of customizable options.
|
|
22081
22081
|
* This is only used for internal purposes and is not exposed to the business logic layer.
|
|
22082
|
-
* Signal transmission is throttled by execution trace id to ensure the transmission and reception order is preserved.
|
|
22083
22082
|
*
|
|
22084
22083
|
* @param {string} signalName - The name of the signal to be transmitted.
|
|
22085
22084
|
* @param {string} serviceName - The name of the target service to transmit the signal to.
|
package/dist/index.js
CHANGED
|
@@ -4274,7 +4274,6 @@ var CadenzaService = class {
|
|
|
4274
4274
|
* Creates and configures a signal transmission task that handles the transmission
|
|
4275
4275
|
* of a specified signal to a target service with a set of customizable options.
|
|
4276
4276
|
* This is only used for internal purposes and is not exposed to the business logic layer.
|
|
4277
|
-
* Signal transmission is throttled by execution trace id to ensure the transmission and reception order is preserved.
|
|
4278
4277
|
*
|
|
4279
4278
|
* @param {string} signalName - The name of the signal to be transmitted.
|
|
4280
4279
|
* @param {string} serviceName - The name of the target service to transmit the signal to.
|
|
@@ -4286,7 +4285,7 @@ var CadenzaService = class {
|
|
|
4286
4285
|
import_core3.default.validateName(signalName);
|
|
4287
4286
|
import_core3.default.validateName(serviceName);
|
|
4288
4287
|
options = {
|
|
4289
|
-
concurrency:
|
|
4288
|
+
concurrency: 0,
|
|
4290
4289
|
timeout: 0,
|
|
4291
4290
|
register: true,
|
|
4292
4291
|
isUnique: false,
|
|
@@ -4305,8 +4304,6 @@ var CadenzaService = class {
|
|
|
4305
4304
|
...options
|
|
4306
4305
|
};
|
|
4307
4306
|
options.isMeta = true;
|
|
4308
|
-
options.concurrency = 1;
|
|
4309
|
-
options.getTagCallback = (context) => context?.__metadata?.__executionTraceId ?? context?.__executionTraceId ?? "default";
|
|
4310
4307
|
const name = `Transmission of signal: ${signalName}`;
|
|
4311
4308
|
return new SignalTransmissionTask(
|
|
4312
4309
|
name,
|