icinga-powershell-framework/lib/core/thread/Test-IcingaThread.psm1

13 lines
213 B
PowerShell
Raw Normal View History

function Test-IcingaThread()
{
param(
[string]$Thread
);
if ([string]::IsNullOrEmpty($Thread)) {
return $FALSE;
}
2021-12-09 11:42:06 -05:00
return $Global:Icinga.Public.Threads.ContainsKey($Thread);
}