bluesky.plan_stubs.caching_repeater#
- bluesky.plan_stubs.caching_repeater(n: int | None, plan: Generator[Msg, Any, P]) Generator[Msg, Any, None][source]#
- Generate n chained copies of the messages in a plan. - This is different from - repeaterabove because it takes in a generator or iterator, not a function that returns one.- Parameters:
- nint or None
- total number of repetitions; if None, infinite 
- planiterable
 
- Yields:
- msgMsg
 
 - See also