He-Pin commented on PR #1623:
URL: https://github.com/apache/pekko/pull/1623#issuecomment-2566380367

   @queimadus Hi, I realized that the origin issue of `concatAllLazy` can not 
be fixed with the current implementation of Interpreter.
   So I have to add a new operator for this.
   
   ```scala
     def concatAllLazy[U >: Out](those: Graph[SourceShape[U], _]*): Repr[U] =
       internalConcatAll(those.toArray, detached = false)
   
   vs:
   
     def concatAllDeferred[U >: Out](those: Graph[SourceShape[U], _]*): Repr[U] 
=
       concatGraph(
         Source.lazySource(
           () => 
Source(those).flatMapConcat(ConstantFun.scalaIdentityFunction)),
         detached = false)
   ```
   
   @pjfanning wdyt 
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org
For additional commands, e-mail: notifications-h...@pekko.apache.org

Reply via email to