final case class ZScheduleSpec extends Product with Serializable
Specification of the times scheduled actions may occur.
The times is a union represented as ZScheduleSpec.Times type. ZScheduleSpec.skip is used for exclusions
- Alphabetic
- By Inheritance
- ZScheduleSpec
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- val endAt: Option[Instant]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val jitter: Option[zio.Duration]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val skip: List[ZScheduleCalendarSpec]
- val startAt: Option[Instant]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val timeZoneName: Option[String]
- val times: Times
- def toJava: ScheduleSpec
- def toString(): String
- Definition Classes
- ZScheduleSpec → AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withEndAt(value: Instant): ZScheduleSpec
Set the end time of the schedule, after which any matching times will be skipped.
- def withJitter(value: zio.Duration): ZScheduleSpec
Set the jitter to apply to each action.
Set the jitter to apply to each action.
An action's schedule time will be incremented by a random value between 0 and this value if present (but not past the next schedule).
- def withSkip(values: ZScheduleCalendarSpec*): ZScheduleSpec
Set the calendar-based specification of times a schedule should not run.
- def withSkip(values: List[ZScheduleCalendarSpec]): ZScheduleSpec
Set the calendar-based specification of times a schedule should not run.
- def withStartAt(value: Instant): ZScheduleSpec
Set the start time of the schedule, before which any matching times will be skipped.
- def withTimeZoneName(value: String): ZScheduleSpec
Set the schedules time zone as a string, for example <c>US/Central</c>.
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)