* @throws InterruptedException
*/
public static void main(String[] args) throws InterruptedException {
ActorSystem _system = ActorSystem.create("RandomRouterExample",
ConfigFactory.load().getConfig("MyRouterExample"));
ActorRef randomRouter = _system.actorOf(
new Props(MsgEchoActor.class).withRouter(new FromConfig()),
"myRandomRouterActor");
for (int i = 1; i <= 10; i++) {
// sends randomly to actors