Hello,
I am using the typed actor system, and trying to locally test persistence using shared Level DB. I have tried following the documentation to spawn the Shared Level DB actor as below,
val store = system.toClassic.actorOf(Props[SharedLeveldbStore], "store")
However, spawning an untyped actor gives me a start up exception,
java.lang.UnsupportedOperationException: cannot create top-level actor [store] from the outside on ActorSystem with custom user guardian
How do I start the actor with a typed actor system?
Kind regards