package streaming
- Alphabetic
- 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
intervalis 0, the query will run as fast as possible. - case class RealTimeTrigger(batchDurationMs: Long) extends Trigger with Product with Serializable
A Trigger that runs a query in real time mode.
A Trigger that runs a query in real time mode.
- batchDurationMs
The duration of each batch in milliseconds. This must be strictly positive.
- Annotations
- @Experimental()
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
- object RealTimeTrigger extends Serializable
- Annotations
- @Experimental()