use of won.matcher.service.rematch.actor.RematchActor in project webofneeds by researchstudio-sat.
the class AkkaSystemMain method main.
public static void main(String[] args) throws IOException {
System.out.println("Environment: ");
System.out.println("------------ ");
Map<String, String> env = System.getenv();
for (String envName : env.keySet()) {
System.out.format("%s=%s%n", envName, env.get(envName));
}
AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MatcherServiceAppConfiguration.class);
ActorSystem system = ctx.getBean(ActorSystem.class);
ActorRef wonNodeControllerActor = system.actorOf(SpringExtension.SpringExtProvider.get(system).props(WonNodeControllerActor.class), "WonNodeControllerActor");
ActorRef rematchActor = system.actorOf(SpringExtension.SpringExtProvider.get(system).props(RematchActor.class), "RematchActor");
}
Aggregations