Requires: Base Development System
Reads multiple event registration refnums for an Event Messenger channel and makes the refnums available to one or more Event structures.
You can drop this endpoint on the block diagram by right-clicking an Event Messenger channel terminal or wire and selecting Create»Channel Reader»Event Messenger»Read Multiple Event Registration.
Unlike the reader endpoints of other channel templates, this reader endpoint must be placed outside the While Loop and can execute only once.
Use one Event structure to handle events whenever possible. Use the Build Array or Bundle functions to combine multiple event registration refnums for a single Event structure.
To allow multiple Event structures to read event registration refnums from this endpoint, you must use the Index Array function to index the event registration refnums and wire each refnum to the dynamic event terminal of each Event structure so that each Event structure receives its own copy of the events from the channel.
Do not fork the event registration refnums to multiple Event structures. Doing so creates undefined behavior that may result in race conditions or deadlocks in your application.
Caveats and Recommendations when Using Events in LabVIEW
Refer to the Channel - Event Messenger.lvproj in the labview\examples\Channels\Event Messenger directory for an example of using the Read Multiple Event Registration endpoint.