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

18 lines
399 B
PowerShell
Raw Normal View History

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);
}
}