Packages

final class DrainingControl[T] extends Control

Combine control and a stream completion signal materialized values into one, so that the stream can be stopped in a controlled way without losing commits.

Source
Consumer.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DrainingControl
  2. Control
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def drainAndShutdown(ec: Executor): CompletionStage[T]

    Stop producing messages from the Source, wait for stream completion and shut down the consumer Source.

    Stop producing messages from the Source, wait for stream completion and shut down the consumer Source. It will wait for outstanding offset commit requests to finish before shutting down.

  2. def drainAndShutdown[S](streamCompletion: CompletionStage[S], ec: Executor): CompletionStage[S]

    Stop producing messages from the Source, wait for stream completion and shut down the consumer Source 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 consumer Source 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.

    Definition Classes
    DrainingControlControl
  3. def getMetrics: CompletionStage[Map[MetricName, Metric]]

    Exposes underlying consumer or producer metrics (as reported by underlying Kafka client library)

    Exposes underlying consumer or producer metrics (as reported by underlying Kafka client library)

    Definition Classes
    DrainingControlControl
  4. def isShutdown: CompletionStage[Done]

    Shutdown status.

    Shutdown status. The CompletionStage will be completed when the stage has been shut down and the underlying KafkaConsumer has been closed. Shutdown can be triggered from downstream cancellation, errors, or #shutdown.

    Definition Classes
    DrainingControlControl
  5. def shutdown(): CompletionStage[Done]

    Shutdown the consumer Source.

    Shutdown the consumer Source. It will wait for outstanding offset commit requests before shutting down.

    Definition Classes
    DrainingControlControl
  6. 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

    Definition Classes
    DrainingControlControl
  7. val streamCompletion: CompletionStage[T]