Source.ask with Typed Actor

Is it possible to use a Source.ask Actors interop • Akka Documentation to interact with a Typed Actor.
The main issue being the passing the reference of the actor source to the receiver.
I thought about Source.actorRef but this requires materialization I believe.

I think you are looking for akka.stream.typed.scaladsl.ActorFlow.ask, which is for typed ActorRef.

1 Like

thank you that’s indeed more appropriate.