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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to