本文整理汇总了Java中org.apache.tinkerpop.gremlin.process.computer.VertexProgram.createVertexProgram方法的典型用法代码示例。如果您正苦于以下问题:Java VertexProgram.createVertexProgram方法的具体用法?Java VertexProgram.createVertexProgram怎么用?Java VertexProgram.createVertexProgram使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.tinkerpop.gremlin.process.computer.VertexProgram
的用法示例。
在下文中一共展示了VertexProgram.createVertexProgram方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: generateProgram
import org.apache.tinkerpop.gremlin.process.computer.VertexProgram; //导入方法依赖的package包/类
@Override
public VertexProgram generateProgram(final Graph graph, final Memory memory) {
final MapConfiguration base = new MapConfiguration(this.configuration);
base.setDelimiterParsingDisabled(true);
PureTraversal.storeState(base, ROOT_TRAVERSAL, TraversalHelper.getRootTraversal(this.getTraversal()).clone());
base.setProperty(STEP_ID, this.getId());
if (memory.exists(TraversalVertexProgram.HALTED_TRAVERSERS))
TraversalVertexProgram.storeHaltedTraversers(base, memory.get(TraversalVertexProgram.HALTED_TRAVERSERS));
return VertexProgram.createVertexProgram(graph, base);
}
示例2: preApplication
import org.apache.tinkerpop.gremlin.process.computer.VertexProgram; //导入方法依赖的package包/类
public void preApplication() throws InstantiationException, IllegalAccessException {
final Configuration apacheConfiguration = ConfUtil.makeApacheConfiguration(this.getContext().getConfiguration());
KryoShimServiceLoader.applyConfiguration(apacheConfiguration);
final VertexProgram vertexProgram = VertexProgram.createVertexProgram(HadoopGraph.open(apacheConfiguration), apacheConfiguration);
this.vertexProgramPool = new VertexProgramPool(vertexProgram, this.getContext().getConfiguration().getInt(GiraphConstants.NUM_COMPUTE_THREADS.getKey(), 1));
this.memory = new GiraphMemory(this, vertexProgram);
}
示例3: create
import org.apache.tinkerpop.gremlin.process.computer.VertexProgram; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
@Override
public BulkLoaderVertexProgram create(final Graph graph) {
ConfigurationUtils.append(graph.configuration().subset(BULK_LOADER_VERTEX_PROGRAM_CFG_PREFIX), configuration);
return (BulkLoaderVertexProgram) VertexProgram.createVertexProgram(graph, configuration);
}
示例4: create
import org.apache.tinkerpop.gremlin.process.computer.VertexProgram; //导入方法依赖的package包/类
@Override
public <P extends VertexProgram> P create(final Graph graph) {
return (P) VertexProgram.createVertexProgram(graph, this.configuration);
}
示例5: create
import org.apache.tinkerpop.gremlin.process.computer.VertexProgram; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
@Override
public BulkDumperVertexProgram create(final Graph graph) {
return (BulkDumperVertexProgram) VertexProgram.createVertexProgram(graph, configuration);
}