spark.jobserver.SparkStreamingJob.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spark-jobserver Show documentation
Show all versions of spark-jobserver Show documentation
SnappyData distributed data store and execution engine
The newest version!
package spark.jobserver
import org.apache.spark.streaming.StreamingContext
/**
* Defines a Job that runs on a [[StreamingContext]], note that
* these jobs are usually long running jobs and there's (yet) no way in Spark
* Job Server to query the status of these jobs.
*/
trait SparkStreamingJob extends SparkJobBase {
type C = StreamingContext
}