You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several examples (in Python) presented in this repository use either read and take functions. Generally, those functions will absorb all samples in the queue. Is there a way to use something like take_next_sample? Or perhaps use read, but then extract from the list of samples the ones that weren't read before?
The text was updated successfully, but these errors were encountered:
You are right: right now we call take or read passing max_sample = DDS_LENGTH_UNLIMITED. We could expose a take(n) and a read(n) that would allow the user to specify max_sample.
Several examples (in Python) presented in this repository use either
read
andtake
functions. Generally, those functions will absorb all samples in the queue. Is there a way to use something like take_next_sample? Or perhaps use read, but then extract from the list of samples the ones that weren't read before?The text was updated successfully, but these errors were encountered: