192021222324252627282930
@Autowired MetaGraphService metaGraphService; @Async public void run(DendriteGraph graph, JobMetadata.Id jobId) { EigenvectorCentralityJob job = new EigenvectorCentralityJob( metaGraphService.getMetaGraph(), jobId, graph); job.run(); }