use of won.matcher.service.common.event.NeedEvent in project webofneeds by researchstudio-sat.
the class SolrTest method main.
public static void main(String[] args) throws IOException, InterruptedException {
// init basic Akka
AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MatcherSolrAppConfiguration.class);
ActorSystem system = ctx.getBean(ActorSystem.class);
ActorRef solrMatcherActor = system.actorOf(SpringExtension.SpringExtProvider.get(system).props(SolrMatcherActor.class), "SolrMatcherActor");
NeedEvent ne1 = createNeedEvent("/needmodel/need1.trig");
NeedEvent ne2 = createNeedEvent("/needmodel/need2.trig");
solrMatcherActor.tell(ne1, null);
Thread.sleep(5000);
solrMatcherActor.tell(ne2, null);
}
Aggregations