| 691 | /// This generator does not queue |
| 692 | template <typename T> |
| 693 | AsyncGenerator<T> MakeFromFuture(Future<AsyncGenerator<T>> future) { |
| 694 | return FutureFirstGenerator<T>(std::move(future)); |
| 695 | } |
| 696 | |
| 697 | /// \brief Create a generator that will pull from the source into a queue. Unlike |
| 698 | /// MakeReadaheadGenerator this will not pull reentrantly from the source. |
no outgoing calls