Packages

package quartz

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. quartz
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class MessageRequireFireTime(msg: AnyRef) extends Product with Serializable
  2. final case class MessageWithFireTime(msg: AnyRef, scheduledFireTime: Date, previousFiringTime: Option[Date] = None, nextFiringTime: Option[Date] = None) extends Product with Serializable

    wrap msg with scheduledFireTime

  3. final class QuartzCronSchedule extends QuartzSchedule
  4. sealed trait QuartzJob extends Job

    Base trait, in case we decide to diversify down the road and allow users to pick "types" of jobs, we still want strict control over them monkeying around in ways that exposes the "bad" parts of Quartz – such as persisted mutable state

  5. sealed trait QuartzSchedule extends AnyRef
  6. class QuartzSchedulerExtension extends Extension

    Note that this extension will only be instantiated *once* *per actor system*.

  7. class QuartzSchedulerTypedExtension extends Extension
  8. class SimpleActorMessageJob extends Job

Value Members

  1. implicit val quartzExtensionLoggerType: LogSource[QuartzSchedulerExtension]
  2. implicit val quartzJobLoggerType: LogSource[SimpleActorMessageJob]
  3. object QuartzCalendars

    Utility classes around the creation and configuration of Quartz Calendars.

    Utility classes around the creation and configuration of Quartz Calendars. All dates must be ISO-8601 compliant.

  4. object QuartzSchedulerExtension extends ExtensionId[QuartzSchedulerExtension] with ExtensionIdProvider
  5. object QuartzSchedulerTypedExtension extends ExtensionId[QuartzSchedulerTypedExtension]
  6. object QuartzSchedules

    This is really about triggers - as the "job" is roughly defined in the code that refers to the trigger.

    This is really about triggers - as the "job" is roughly defined in the code that refers to the trigger.

    I call them Schedules to get people not thinking about Quartz in Quartz terms (mutable jobs, persistent state)

    All jobs "start" immediately.

Inherited from AnyRef

Inherited from Any

Ungrouped