trait Control extends AnyRef
- Alphabetic
- By Inheritance
- Control
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def drainAndShutdown[T](streamCompletion: CompletionStage[T], ec: Executor): CompletionStage[T]
Stop producing messages from the
Source
, wait for stream completion and shut down the consumerSource
so that all consumed messages reach the end of the stream.Stop producing messages from the
Source
, wait for stream completion and shut down the consumerSource
so that all consumed messages reach the end of the stream. Failures in stream completion will be propagated, the source will be shut down anyway. - abstract def getMetrics: CompletionStage[Map[MetricName, Metric]]
Exposes underlying consumer or producer metrics (as reported by underlying Kafka client library)
- abstract def isShutdown: CompletionStage[Done]
Shutdown status.
Shutdown status. The
CompletionStage
will be completed when the stage has been shut down and the underlyingKafkaConsumer
has been closed. Shutdown can be triggered from downstream cancellation, errors, or #shutdown. - abstract def shutdown(): CompletionStage[Done]
Shutdown the consumer
Source
.Shutdown the consumer
Source
. It will wait for outstanding offset commit requests before shutting down. - abstract def stop(): CompletionStage[Done]
Stop producing messages from the
Source
.Stop producing messages from the
Source
. This does not stop underlying kafka consumer and does not unsubscribe from any topics/partitions.Call #shutdown to close consumer