package streaming
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- case class ContinuousTrigger(intervalMs: Long) extends Trigger with Product with Serializable
A Trigger that continuously processes streaming data, asynchronously checkpointing at the specified interval.
- case class ProcessingTimeTrigger(intervalMs: Long) extends Trigger with Product with Serializable
A Trigger that runs a query periodically based on the processing time.
A Trigger that runs a query periodically based on the processing time. If
interval
is 0, the query will run as fast as possible.
Value Members
- case object AvailableNowTrigger extends Trigger with Product with Serializable
A Trigger that processes all available data in multiple batches then terminates the query.
- object ContinuousTrigger extends Serializable
- case object OneTimeTrigger extends Trigger with Product with Serializable
A Trigger that processes all available data in one batch then terminates the query.
- object ProcessingTimeTrigger extends Serializable