When you open a reference for a VI that you want to call asynchronously, you must decide whether you want to collect the results of the VI later. This topic describes how to start an asynchronous call-and-collect VI call and collect the results later. Other programming languages describe this usage model as fork-and-join. Alternatively, you can call a VI without collecting its results.
Use the following block diagram objects to dynamically start an asynchronous call to a VI and then collect the outputs of the VI at a later time:
| Strictly Typed VI Reference | Open VI Reference | Start Asynchronous Call | Wait On Asynchronous Call | Close Reference | ||||||||||||
| Create |
Create the following block diagram to asynchronously call a VI and then collect the results at a later time.
The following list describes important details about the previous diagram.
![]() |
Include the 0x100 flag as part of the options input of the Open VI Reference function. This option flag causes LabVIEW to create a call-and-collect VI reference to be called asynchronously and to return its results at a later time.
|
||
![]() |
The Wait On Asynchronous Call node is associated with a Start Asynchronous Call node that uses the same VI reference as an input. | ||
![]() |
After the Start Asynchronous Call node calls the referenced VI, the rest of the calling block diagram continues executing without waiting for the referenced VI to complete. | ||
![]() |
The Wait On Asynchronous Call node waits until the VI associated with its reference input finishes executing or until the node times out. At that time, the Wait On Asynchronous Call node returns the outputs of the referenced VI, and dataflow continues along its output wires. | ||
![]() |
Close each VI reference with the Close Reference function after you use it to collect the outputs of the referenced VI. When you close a call-and-collect VI reference, LabVIEW aborts all running instances of the VI. This behavior differs from closing call-and-forget VI references. |
The following block diagram provides a template for calling multiple VIs asynchronously and then collecting their outputs. Because each asynchronous call is associated with a unique VI reference, each Wait On Asynchronous Call node waits for a specific VI call to finish. This template is particularly useful for creating user interfaces with subpanels whose contents represent the front panels of separate subVIs.
Refer to the AsynchronousCallAndCollect VI in the labview\examples\viserver\AsynchronousCallByReference directory for an example of asynchronously calling a VI and collecting its results later.