package impl
- Source
- package.scala
- Alphabetic
- By Inheritance
- impl
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- sealed abstract final class EdgeActiveness extends Enum[EdgeActiveness]
- class EdgeRDDImpl[ED, VD] extends EdgeRDD[ED]
-
class
GraphImpl[VD, ED] extends Graph[VD, ED] with Serializable
An implementation of org.apache.spark.graphx.Graph to support computation on graphs.
An implementation of org.apache.spark.graphx.Graph to support computation on graphs.
Graphs are represented using two RDDs:
vertices
, which contains vertex attributes and the routing information for shipping vertex attributes to edge partitions, andreplicatedVertexView
, which contains edges and the vertex attributes mentioned by each edge. - class VertexRDDImpl[VD] extends VertexRDD[VD]