Table of Contents

Method InvokeInParallel

Namespace
NationalInstruments.SemiconductorTestLibrary.Common
Assembly
NationalInstruments.SemiconductorTestLibrary.Abstractions.dll

InvokeInParallel(params Action[])

This method calls the Parallel.Invoke method to execute multiple methods in parallel. If any of the methods generates an exception, this method throws the first exception encountered. This allows the TestStand Semiconductor Module runtime error dialog to properly display the exception.

public static void InvokeInParallel(params Action[] actions)

Parameters

actions Action[]

The methods to invoke in parallel.