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

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZScheduleSpec
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. val endAt: Option[Instant]
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  9. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  10. val jitter: Option[zio.Duration]
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  14. def productElementNames: Iterator[String]
    Definition Classes
    Product
  15. val skip: List[ZScheduleCalendarSpec]
  16. val startAt: Option[Instant]
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. val timeZoneName: Option[String]
  19. val times: Times
  20. def toJava: ScheduleSpec
  21. def toString(): String
    Definition Classes
    ZScheduleSpec → AnyRef → Any
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. def withEndAt(value: Instant): ZScheduleSpec

    Set the end time of the schedule, after which any matching times will be skipped.

  26. 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).

  27. def withSkip(values: ZScheduleCalendarSpec*): ZScheduleSpec

    Set the calendar-based specification of times a schedule should not run.

  28. def withSkip(values: List[ZScheduleCalendarSpec]): ZScheduleSpec

    Set the calendar-based specification of times a schedule should not run.

  29. def withStartAt(value: Instant): ZScheduleSpec

    Set the start time of the schedule, before which any matching times will be skipped.

  30. def withTimeZoneName(value: String): ZScheduleSpec

    Set the schedules time zone as a string, for example <c>US/Central</c>.

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped