bluesky.plan_stubs.wait_for#
- bluesky.plan_stubs.wait_for(futures: Iterable[Callable[[], Awaitable[Any]]], **kwargs) Generator[Msg, Any, P][source]#
- Low-level: wait for a list of - asyncio.Futureobjects to set (complete).- Parameters:
- futuresiterable
- iterable collection of coroutine functions that take no arguments 
- kwargs
- passed through to - asyncio.wait()
 
- Yields:
- msgMsg
- Msg('wait_for', None, futures, **kwargs)
 
 - See also