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

responses.JobStates.scala Maven / Gradle / Ivy

Go to download

The API for Spark-Job-Rest. Contains the SparkJob interface that must be extended in order to run jobs on the server.

There is a newer version: 0.3.1-spark1.3.1
Show newest version
package responses

/**
 * Created by raduchilom on 4/24/15.
 */

object JobStates {

  sealed abstract class JobState(val name: String) {
    override def toString = name
  }

  case object RUNNING extends JobState("Running")

  case object ERROR extends JobState("Error")

  case object FINISHED extends JobState("Finished")

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy