mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
18 lines
375 B
PowerShell
18 lines
375 B
PowerShell
function New-IcingaThreadPool()
|
|
{
|
|
param(
|
|
[int]$MinInstances = 1,
|
|
[int]$MaxInstances = 5
|
|
);
|
|
|
|
$Runspaces = [RunspaceFactory]::CreateRunspacePool(
|
|
$MinInstances,
|
|
$MaxInstances,
|
|
[System.Management.Automation.Runspaces.InitialSessionState]::CreateDefault(),
|
|
$host
|
|
)
|
|
|
|
$Runspaces.Open();
|
|
|
|
return $Runspaces;
|
|
}
|