Skip to content

Commit

Permalink
Add note that JavaRDDLike should not be implemented by user code
Browse files Browse the repository at this point in the history
  • Loading branch information
srowen committed Jan 18, 2015
1 parent 2e9b490 commit 66885b8
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ import org.apache.spark.rdd.RDD
import org.apache.spark.storage.StorageLevel
import org.apache.spark.util.Utils

/**
* Defines operations common to several Java RDD implementations.
* Note that this trait is not intended to be implemented by user code.
*/
trait JavaRDDLike[T, This <: JavaRDDLike[T, This]] extends Serializable {
def wrapRDD(rdd: RDD[T]): This

Expand Down

0 comments on commit 66885b8

Please sign in to comment.