tech.mlsql.scheduler.client.ExecutorClient.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mlsql-scheduler Show documentation
Show all versions of mlsql-scheduler Show documentation
A library for job scheduler based on MLSQL
The newest version!
package tech.mlsql.scheduler.client
import tech.mlsql.scheduler.JobNode
/**
* 2019-09-05 WilliamZhu([email protected])
*/
trait ExecutorClient[T] {
def execute(job: JobNode[T]): Unit
}