icinga-powershell-framework/lib/core/thread/Remove-IcingaThread.psm1
2019-10-05 21:59:03 +02:00

17 lines
399 B
PowerShell

function Remove-IcingaThread()
{
param(
[string]$Thread
);
if ([string]::IsNullOrEmpty($Thread)) {
return;
}
Stop-IcingaThread -Thread $Thread;
if ($global:IcingaDaemonData.IcingaThreads.ContainsKey($Thread)) {
$global:IcingaDaemonData.IcingaThreads[$Thread].Shell.Dispose();
$global:IcingaDaemonData.IcingaThreads.Remove($Thread);
}
}