abstract defsubmitJob[T, U, R](rdd: RDD[T], processPartition: (Iterator[T]) ⇒ U, partitions: Seq[Int], resultHandler: (Int, U) ⇒ Unit, resultFunc: ⇒ R): FutureAction[R]
Submit a job for execution and return a FutureAction holding the result.
Submit a job for execution and return a FutureAction holding the result.
This is a wrapper around the same functionality provided by SparkContext
to enable cancellation.
Handle via which a "run" function passed to a ComplexFutureAction can submit jobs for execution.