|
timeout in ms is the time, in milliseconds, that this endpoint has to read the elements from the channel. The default is 0.
0 or more | The endpoint waits for a new element but no longer than the specified number of milliseconds. |
-1 | The endpoint waits until a new element is written since the last time the endpoint read from the channel. |
|
|
channel is the channel wire that connects this endpoint to a writer endpoint.
|
|
abort specifies whether to abort this channel. If abort is TRUE, this endpoint will not perform further read operations until the whole channel is reset. Reset occurs when the common caller VI of both the writer endpoint and the reader endpoint begins another iteration.
|
|
missed returns the number of times that the element from the channel has been overwritten.
-1 | The element has not been overwritten since the last successful read operation. Or the element has not been written at all if this is the first time the element was read. Or the channel was aborted from any endpoint. |
0 | The element is newly written since the last successful read, even if the newly written element is the same as the previous element. |
positive number | The element has been overwritten the specified number of times between this endpoint's last read operation and this read operation. |
|
|
element returns the data that this endpoint reads from the channel. If a timeout occurs or the channel aborts, the data will be the last value that this endpoint reads from the channel.
|
|
aborted? returns TRUE if abort occurred on this endpoint or the writer endpoint connected to the channel. If aborted? is TRUE, further calls to this endpoint will do nothing except returning aborted? TRUE again.
|