Created
April 22, 2022 20:19
-
-
Save russellds/4173c4f7dae43f72aab08cdcaf95d538 to your computer and use it in GitHub Desktop.
ForEach-Object -Parallet with a Synchronized HashTable and Injecting a Function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doStuff { | |
param( | |
[string] | |
$Item | |
) | |
$htDoStuff.($Item) = @{} | |
} | |
$stringFuncDoStuff = "${function:doStuff}" | |
$htDoStuff = [System.Collections.Hashtable]::Synchronized((New-Object System.Collections.Hashtable)) #@{} | |
$array = @('first', 'second') | |
# ForEach-Object -Parallel | |
$array | ForEach-Object -Parallel { | |
$function:doStuff = $using:stringFuncDoStuff | |
$htDoStuff = $using:htDoStuff | |
doStuff -Item $PSItem | |
} | |
$htDoStuff |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment