trait Control extends AnyRef
- Alphabetic
- By Inheritance
- Control
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def isShutdown: Future[Done]
Shutdown status.
Shutdown status. The
Future
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 metrics: Future[Map[MetricName, Metric]]
Exposes underlying consumer or producer metrics (as reported by underlying Kafka client library)
- abstract def shutdown(): Future[Done]
Shut down the consumer
Source
.Shut down the consumer
Source
.The actor backing the source will stay alive for
akka.kafka.consumer.stop-timeout
so that more commits from enqueued messages can be handled. The actor will wait for acknowledgements of the already sent offset commits from the Kafka broker before shutting down. - abstract def stop(): Future[Done]
Stop producing messages from the
Source
and complete the stream.Stop producing messages from the
Source
and complete the stream. The underlying Kafka consumer stays alive so that it can handle commits for the already enqueued messages. It does not unsubscribe from any topics/partitions as that could trigger a consumer group rebalance.Call #shutdown to close consumer.
Concrete Value Members
- def drainAndShutdown[S](streamCompletion: Future[S])(implicit ec: ExecutionContext): Future[S]
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.