PaulHigin / PSThreadJob

A PowerShell module for running concurrent jobs based on threads rather than processes
MIT License
180 stars 18 forks source link

Updated version for publishing. #13

Closed PaulHigin closed 6 years ago

PaulHigin commented 6 years ago

Also manually merged contribution from @ajansveld to add InformationStream support. Thanks!

$job = Start-ThreadJob -ScriptBlock { Write-Information "My Info"}
$null = $job | Receive-Job -Wait -InformationVariable info
$info  | Should be "My Info"