Edge Class
An Instance Constructor
A single directed edge consisting of a source id, target id, and the data associated with the edge.
srcId The vertex id of the source vertex
dstId The vertex id of the target vertex
attr The attribute associated with the edge
Example:
https://github.com/apache/spark/blob/v2.4.5/graphx/src/main/scala/org/apache/spark/graphx/Edge.scala
Last updated