Uses of Class
com.alibaba.graphscope.ds.VertexSet
-
Packages that use VertexSet Package Description com.alibaba.graphscope.ds com.alibaba.graphscope.example.bfs com.alibaba.graphscope.example.sssp com.alibaba.graphscope.example.wcc com.alibaba.graphscope.parallel -
-
Uses of VertexSet in com.alibaba.graphscope.ds
Methods in com.alibaba.graphscope.ds with parameters of type VertexSet Modifier and Type Method Description voidVertexSet. assign(VertexSet other)Set this vertex set with bits from another. -
Uses of VertexSet in com.alibaba.graphscope.example.bfs
Fields in com.alibaba.graphscope.example.bfs declared as VertexSet Modifier and Type Field Description VertexSetBFSContext. currentInnerUpdatedVertexSetBFSContext. nextInnerUpdated -
Uses of VertexSet in com.alibaba.graphscope.example.sssp
Fields in com.alibaba.graphscope.example.sssp declared as VertexSet Modifier and Type Field Description VertexSetSSSPContext. curModifiedVertexSetSSSPContext. nextModified -
Uses of VertexSet in com.alibaba.graphscope.example.wcc
Fields in com.alibaba.graphscope.example.wcc declared as VertexSet Modifier and Type Field Description VertexSetWCCContext. currModifiedVertexSetWCCContext. nextModified -
Uses of VertexSet in com.alibaba.graphscope.parallel
Methods in com.alibaba.graphscope.parallel with parameters of type VertexSet Modifier and Type Method Description default voidParallelEngine. forEachLabelVertex(VertexRange<Long> vertices, int vertexLabelId, int threadNum, ExecutorService executor, VertexSet vertexSet, TriConsumer<Vertex<Long>,Integer,Integer> consumer)Apply Triconsumer for each vertex in vertices, in a parallel schema.default <MSG_T extends PrimitiveMessage>
voidParallelEngine. forEachVertex(VertexRange<Long> vertices, int threadNum, ExecutorService executor, VertexSet vertexSet, TriConsumer<Vertex<Long>,Integer,PrimitiveMessage> consumer, Supplier<MSG_T> msgSupplier)Parallel sending messages, with a TriConsumer and msg Supplierdefault voidParallelEngine. forEachVertex(VertexRange<Long> vertices, int threadNum, ExecutorService executor, VertexSet vertexSet, BiConsumer<Vertex<Long>,Integer> consumer)Apply consumer for each vertex in vertices, in a parallel schemadefault voidParallelEngine. forEachVertexSendMsg(VertexRange<Long> vertices, int threadNum, ExecutorService executor, VertexSet vertexSet, TriConsumer<Vertex<Long>,Integer,DoubleMsg> consumer, Supplier<DoubleMsg> msgSupplier)Iterate over vertices in VertexRange, applying lambda functions on each vertex, and send msg with msg created from message supplier
-