All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spark.scheduler.JobResult.scala Maven / Gradle / Ivy

The newest version!
package spark.scheduler

/**
 * A result of a job in the DAGScheduler.
 */
private[spark] sealed trait JobResult

private[spark] case object JobSucceeded extends JobResult
private[spark] case class JobFailed(exception: Exception) extends JobResult




© 2015 - 2025 Weber Informatics LLC | Privacy Policy