org.apache.pekko.extension.quartz
QuartzSchedulerTypedExtension
Companion object QuartzSchedulerTypedExtension
class QuartzSchedulerTypedExtension extends Extension
- Alphabetic
- By Inheritance
- QuartzSchedulerTypedExtension
- Extension
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new QuartzSchedulerTypedExtension(untyped: QuartzSchedulerExtension)
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]) @native()
- def createTypedJobSchedule[T](name: String, receiver: ActorRef[T], msg: T, description: Option[String] = None, cronExpression: String, calendar: Option[String] = None, timezone: TimeZone = untyped.defaultTimezone): Date
Creates job, associated triggers and corresponding schedule at once.
Creates job, associated triggers and corresponding schedule at once.
- name
The name of the job, as defined in the schedule
- receiver
An ActorRef, who will be notified each time the schedule fires
- msg
A message object, which will be sent to
receivereach time the schedule fires- description
A string describing the purpose of the job
- cronExpression
A string with the cron-type expression
- calendar
An optional calendar to use.
- timezone
The time zone to use if different from default.
- returns
A date which indicates the first time the trigger will fire.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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()
- def rescheduleTypedJob[T](name: String, receiver: ActorRef[T], msg: T, description: Option[String] = None, cronExpression: String, calendar: Option[String] = None, timezone: TimeZone = untyped.defaultTimezone): Date
Reschedule a job
Reschedule a job
- name
A String identifying the job
- receiver
An ActorRef, who will be notified each time the schedule fires
- msg
A message object, which will be sent to
receivereach time the schedule fires- description
A string describing the purpose of the job
- cronExpression
A string with the cron-type expression
- calendar
An optional calendar to use.
- returns
A date which indicates the first time the trigger will fire.
- def scheduleTyped[T](name: String, receiver: ActorRef[T], msg: T, startDate: Option[Date]): Date
Schedule a job, whose named configuration must be available
Schedule a job, whose named configuration must be available
- name
A String identifying the job, which must match configuration
- receiver
An ActorRef, who will be notified each time the schedule fires
- msg
A message object, which will be sent to
receivereach time the schedule fires- returns
A date which indicates the first time the trigger will fire.
- def scheduleTyped[T](name: String, receiver: ActorRef[T], msg: T): Date
Schedule a job, whose named configuration must be available
Schedule a job, whose named configuration must be available
- name
A String identifying the job, which must match configuration
- receiver
An ActorRef, who will be notified each time the schedule fires
- msg
A message object, which will be sent to
receivereach time the schedule fires- returns
A date which indicates the first time the trigger will fire.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def updateTypedJobSchedule[T](name: String, receiver: ActorRef[T], msg: T, description: Option[String] = None, cronExpression: String, calendar: Option[String] = None, timezone: TimeZone = untyped.defaultTimezone): Date
Updates job, associated triggers and corresponding schedule at once.
Updates job, associated triggers and corresponding schedule at once.
- name
The name of the job, as defined in the schedule
- receiver
An ActorRef, who will be notified each time the schedule fires
- msg
A message object, which will be sent to
receivereach time the schedule fires- description
A string describing the purpose of the job
- cronExpression
A string with the cron-type expression
- calendar
An optional calendar to use.
- timezone
The time zone to use if different from default.
- returns
A date which indicates the first time the trigger will fire.
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()