Skip to content

Commit

Permalink
improved documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbradley committed Jan 28, 2015
1 parent 235738c commit 188665f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions graphx/src/main/scala/org/apache/spark/graphx/Graph.scala
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,14 @@ abstract class Graph[VD: ClassTag, ED: ClassTag] protected () extends Serializab
def checkpoint(): Unit

/**
* Return whether this Graph has been checkpointed or not
* Return whether this Graph has been checkpointed or not.
* This returns true iff both the vertices RDD and edges RDD have been checkpointed.
*/
def isCheckpointed: Boolean

/**
* Gets the name of the files to which this Graph was checkpointed
* Gets the name of the files to which this Graph was checkpointed.
* (The vertices RDD and edges RDD are checkpointed separately.)
*/
def getCheckpointFiles: Seq[String]

Expand Down

0 comments on commit 188665f

Please sign in to comment.