icinga-powershell-framework/lib/core/thread/Test-IcingaThread.psm1
2022-01-25 10:00:19 +01:00

12 lines
213 B
PowerShell

function Test-IcingaThread()
{
param(
[string]$Thread
);
if ([string]::IsNullOrEmpty($Thread)) {
return $FALSE;
}
return $Global:Icinga.Public.Threads.ContainsKey($Thread);
}