engage-engine 1.251.90910021 → 1.251.90910022
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/include/ConfigurationObjects.h +11 -2
- package/lib/darwin.arm64/libengage-shared.dylib +0 -0
- package/lib/darwin.x64/libengage-shared.dylib +0 -0
- package/lib/linux.arm64/libengage-shared.so +0 -0
- package/lib/linux.x64/libengage-shared.so +0 -0
- package/lib/win32.ia32/engage-shared.dll +0 -0
- package/lib/win32.x64/engage-shared.dll +0 -0
- package/package.json +1 -1
|
@@ -1431,6 +1431,9 @@ namespace AppConfigurationObjects
|
|
|
1431
1431
|
/** @brief [Optional, Default: false] Indicates that the aliasSpecializer must cause receivers to mute this transmission if they have an affinity for the specializer.. */
|
|
1432
1432
|
bool receiverRxMuteForAliasSpecializer;
|
|
1433
1433
|
|
|
1434
|
+
/** @brief [Optional, Default: false] Indicates that the transmission should be restarted. */
|
|
1435
|
+
bool reBegin;
|
|
1436
|
+
|
|
1434
1437
|
AdvancedTxParams()
|
|
1435
1438
|
{
|
|
1436
1439
|
clear();
|
|
@@ -1448,6 +1451,7 @@ namespace AppConfigurationObjects
|
|
|
1448
1451
|
audioUri.clear();
|
|
1449
1452
|
aliasSpecializer = 0;
|
|
1450
1453
|
receiverRxMuteForAliasSpecializer = false;
|
|
1454
|
+
reBegin = false;
|
|
1451
1455
|
}
|
|
1452
1456
|
|
|
1453
1457
|
virtual void initForDocumenting()
|
|
@@ -1467,7 +1471,8 @@ namespace AppConfigurationObjects
|
|
|
1467
1471
|
TOJSON_IMPL(txId),
|
|
1468
1472
|
TOJSON_IMPL(audioUri),
|
|
1469
1473
|
TOJSON_IMPL(aliasSpecializer),
|
|
1470
|
-
TOJSON_IMPL(receiverRxMuteForAliasSpecializer)
|
|
1474
|
+
TOJSON_IMPL(receiverRxMuteForAliasSpecializer),
|
|
1475
|
+
TOJSON_IMPL(reBegin)
|
|
1471
1476
|
};
|
|
1472
1477
|
}
|
|
1473
1478
|
static void from_json(const nlohmann::json& j, AdvancedTxParams& p)
|
|
@@ -1483,6 +1488,7 @@ namespace AppConfigurationObjects
|
|
|
1483
1488
|
getOptional<TxAudioUri>("audioUri", p.audioUri, j);
|
|
1484
1489
|
getOptional<uint16_t>("aliasSpecializer", p.aliasSpecializer, j, 0);
|
|
1485
1490
|
getOptional<bool>("receiverRxMuteForAliasSpecializer", p.receiverRxMuteForAliasSpecializer, j, false);
|
|
1491
|
+
getOptional<bool>("reBegin", p.reBegin, j, false);
|
|
1486
1492
|
}
|
|
1487
1493
|
|
|
1488
1494
|
//-----------------------------------------------------------
|
|
@@ -10391,7 +10397,10 @@ namespace AppConfigurationObjects
|
|
|
10391
10397
|
txsBridgedButNotMultistream = -11,
|
|
10392
10398
|
|
|
10393
10399
|
/** @brief Transmission was automatically ended because the group became bridged on a non-multistream configuration */
|
|
10394
|
-
txsAutoEndedDueToNonMultistreamBridge = -12
|
|
10400
|
+
txsAutoEndedDueToNonMultistreamBridge = -12,
|
|
10401
|
+
|
|
10402
|
+
/** @brief Restart of transmission was attempted but transmission was not already operational */
|
|
10403
|
+
txsReBeginWithoutPriorBegin = -13
|
|
10395
10404
|
} TxStatus_t;
|
|
10396
10405
|
|
|
10397
10406
|
/** @brief ID of the group */
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED