I have read multiple times the doc Coexistence • Akka Documentation
the only way to spawn a typed actor from behavior is by creating kind of proxy classic actor that will spawn it.
there is no direct way to spawn an actor from the actor system itself like: classicActorSystem.spawn(typedActor, "my-typed-actor" )
Is that right to say it? if not can you please direct me on how to do it directly ?