LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Notifier is still a polling mehtod, is there one method purely by trigger or event driven, not by polling

Thanks
0 Kudos
Message 1 of 5
(2,505 Views)

Notifiers have quite a similar behavior with events.

It is not a polling method. Code is not executed until an event occurs (wait on notification).

 

0 Kudos
Message 2 of 5
(2,489 Views)
I'm not sure what your question is, but a wait for notification will not poll if you set the timeout to -1. This is almost definitely explained in the help for the function.

___________________
Try to take over the world!
0 Kudos
Message 3 of 5
(2,478 Views)

If there is multi writer or reader, how to handle it? How to lock the interlink. How to archive the event driven in cornel level.

I just want to find out the internal machnism.

 

0 Kudos
Message 4 of 5
(2,464 Views)

I didn't understand what you want to do. Can you describe your desired architecture in more details?

In general, multiple readers and multiple writers require different tools and it varies even more depending on whether you want to keep all the data or whether it can be lossy.

Locking can usually be done with single-element queues or with semaphores, but again, it depends on the desired architecture.


___________________
Try to take over the world!
0 Kudos
Message 5 of 5
(2,450 Views)