Packages

object JavaSparkContext

Source
JavaSparkContext.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JavaSparkContext
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. implicit def fromSparkContext(sc: SparkContext): JavaSparkContext
  2. def jarOfClass(cls: Class[_]): Array[String]

    Find the JAR from which a given class was loaded, to make it easy for users to pass their JARs to SparkContext.

  3. def jarOfObject(obj: AnyRef): Array[String]

    Find the JAR that contains the class of a particular object, to make it easy for users to pass their JARs to SparkContext.

    Find the JAR that contains the class of a particular object, to make it easy for users to pass their JARs to SparkContext. In most cases you can call jarOfObject(this) in your driver program.

  4. implicit def toSparkContext(jsc: JavaSparkContext): SparkContext