CrawlerSchedule

data class CrawlerSchedule(val scheduleExpression: String? = null)

A scheduling object using a cron statement to schedule an event.

Constructors

Link copied to clipboard
constructor(scheduleExpression: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A cron expression used to specify the schedule. For more information, see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, specify cron(15 12 * * ? *).