Convenience method to poll a ring buffer by name
(self, name, thread_index=0, timeout=None, callback=None)
| 311 | raise |
| 312 | |
| 313 | def poll_ring_buffer(self, name, thread_index=0, timeout=None, callback=None): |
| 314 | """Convenience method to poll a ring buffer by name""" |
| 315 | ring_buffer = self.get_ring_buffer(name) |
| 316 | return ring_buffer.poll_for_data(thread_index, timeout, callback) |
| 317 | |
| 318 | async def poll_ring_buffer_async( |
| 319 | self, name, thread_index=0, timeout=None, callback=None |
nothing calls this directly
no test coverage detected