Package lupos.distributed.operator.format.operatorcreator

Examples of lupos.distributed.operator.format.operatorcreator.RDF3XCreator


      final BasicIndexQueryEvaluator evaluator = Endpoint.createQueryEvaluator(directory);

      // evaluate context for SPARQL query processing...
      Endpoint.registerHandler("/sparql/" + keyType, new SPARQLHandler(new SPARQLExecutionImplementation(evaluator, directory)));

      final RDF3XCreator creator = new RDF3XCreator();
      // register context for evaluating subgraphs...
      Endpoint.registerHandler("/sparql/subgraph/" + keyType, new SPARQLHandler(new SubgraphExecutionImplementation(evaluator, directory, creator)));

      // register context for determining histograms...
      Endpoint.registerHandler("/sparql/histogram/" + keyType, new SPARQLHandler(new HistogramExecutionImplementation(evaluator, creator)));
View Full Code Here

TOP

Related Classes of lupos.distributed.operator.format.operatorcreator.RDF3XCreator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.