|
Is RR Idle Yet? Edi Murway from United States [11 posts] |
5 year
|
I'm working in vb.net. I need to know when RR is Idle (done processing the pipeline)
|
|
|
Steven Gentner from United States [1446 posts] |
5 year
|
Edi,
Normally RR is never idle but always processing new images. If you are using it in more of a stepwise fashion only processing one image at a time you can use the waitImage function to wait for the current image to be processed. For more complicated actions, you can also use the waitVariable and set that variable only at the end of the pipeline which would signal the end of processing. Note there is also a waitVariableChange which does not require a specific value but just that a variable changes its value.
For example you could use
rr.WaitVariableChange "IMAGE_COUNT", 100000
which would wait for the image_count system variable to increment with a timeout of 100000 seconds.
STeven.
|
|
|
Edi Murway from United States [11 posts] |
5 year
|
Thank you STeven.
It was not clear to me that waitimage was after the processing.
Thanks again!
|
|