| 1606 | /// This generator will not queue |
| 1607 | template <typename T> |
| 1608 | AsyncGenerator<T> MakeTransferredGenerator(AsyncGenerator<T> source, |
| 1609 | internal::Executor* executor) { |
| 1610 | return TransferringGenerator<T>(std::move(source), executor); |
| 1611 | } |
| 1612 | |
| 1613 | /// \see MakeBackgroundGenerator |
| 1614 | template <typename T> |
no outgoing calls