Packages

object Committer

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

Value Members

  1. def batchFlow[C <: Committable](settings: CommitterSettings): Flow[C, CommittableOffsetBatch, NotUsed]

    Batches offsets and commits them to Kafka, emits CommittableOffsetBatch for every committed batch.

  2. def flow[C <: Committable](settings: CommitterSettings): Flow[C, Done, NotUsed]

    Batches offsets and commits them to Kafka, emits Done for every committed batch.

  3. def flowWithOffsetContext[E, C <: Committable](settings: CommitterSettings): FlowWithContext[E, C, NotUsed, CommittableOffsetBatch, NotUsed]

    API MAY CHANGE

    API MAY CHANGE

    Batches offsets from context and commits them to Kafka, emits no useful value, but keeps the committed CommittableOffsetBatch as context.

    Annotations
    @ApiMayChange()
  4. def sink[C <: Committable](settings: CommitterSettings): Sink[C, CompletionStage[Done]]

    Batches offsets and commits them to Kafka.

  5. def sinkWithOffsetContext[E, C <: Committable](settings: CommitterSettings): Sink[Pair[E, C], CompletionStage[Done]]

    API MAY CHANGE

    API MAY CHANGE

    Batches offsets from context and commits them to Kafka.

    Annotations
    @ApiMayChange()