final case class CronJobSpec(startingDeadlineSeconds: Option[Int] = None, concurrencyPolicy: Option[String] = None, failedJobsHistoryLimit: Option[Int] = None, successfulJobsHistoryLimit: Option[Int] = None, suspend: Option[Boolean] = None, schedule: String, jobTemplate: JobTemplateSpec, timeZone: Option[String] = None) extends Product with Serializable
CronJobSpec describes how the job execution will look like and when it will actually run.
- Source
- CronJobSpec.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CronJobSpec
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new CronJobSpec(startingDeadlineSeconds: Option[Int] = None, concurrencyPolicy: Option[String] = None, failedJobsHistoryLimit: Option[Int] = None, successfulJobsHistoryLimit: Option[Int] = None, suspend: Option[Boolean] = None, schedule: String, jobTemplate: JobTemplateSpec, timeZone: Option[String] = None)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- val concurrencyPolicy: Option[String]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val failedJobsHistoryLimit: Option[Int]
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val jobTemplate: JobTemplateSpec
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val schedule: String
- val startingDeadlineSeconds: Option[Int]
- val successfulJobsHistoryLimit: Option[Int]
- val suspend: Option[Boolean]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val timeZone: Option[String]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def withConcurrencyPolicy(value: String): CronJobSpec
- def withFailedJobsHistoryLimit(value: Int): CronJobSpec
- def withJobTemplate(value: JobTemplateSpec): CronJobSpec
- def withSchedule(value: String): CronJobSpec
- def withStartingDeadlineSeconds(value: Int): CronJobSpec
- def withSuccessfulJobsHistoryLimit(value: Int): CronJobSpec
- def withSuspend(value: Boolean): CronJobSpec
- def withTimeZone(value: String): CronJobSpec