generally working with Python/Pythia

This commit is contained in:
2023-04-07 01:30:54 -07:00
parent cc6f6b911c
commit deb145a7ce
8 changed files with 210 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
private _threadsToCheck = RangerMetrics_activeThreads;
{
private _finished = ["RangerMetrics.influx.has_call_finished", [_threadId]] call py3_fnc_callExtension;
if (_finished) then {
_threadsToCheck = _threadsToCheck - [_threadId];
if (missionNamespace getVariable ["RangerMetrics_debug",false]) then {
private _return = ["RangerMetrics.influx.get_call_value", [_threadId]] call py3_fnc_callExtension;
[format ["Thread result: %1", _extSend], "DEBUG"] call RangerMetrics_fnc_log;
};
};
} forEach _threadsToCheck;