actorRuntime.registerActor(SomeEntity.class); doesn't allow you to inject constructor arguments inside SomeEntity. Using
getDeclaredConstructor().newInstance() or similar approach we should be able to allow constructor arguments whilst registering actor classes.