Package

akka

kafka

Permalink

package kafka

Visibility
  1. Public
  2. All

Type Members

  1. sealed trait AutoSubscription extends Subscription

    Permalink

    Kafka-speak for these is "Subscriptions".

  2. sealed trait CommitDelivery extends AnyRef

    Permalink
    Annotations
    @ApiMayChange()
  3. class CommitTimeoutException extends TimeoutException

    Permalink

    Calls to commitJavadsl and commitScaladsl will be failed with this exception if Kafka doesn't respond within commit-timeout

  4. sealed trait CommitWhen extends AnyRef

    Permalink
    Annotations
    @ApiMayChange()
  5. class CommitterSettings extends AnyRef

    Permalink

    Settings for committer.

    Settings for committer. See akka.kafka.committer section in reference.conf. Note that the companion object provides apply and create functions for convenient construction of the settings, together with the with methods.

  6. class ConnectionCheckerSettings extends AnyRef

    Permalink
  7. class ConsumerFailed extends RuntimeException

    Permalink

    Kafka consumer stages fail with this exception.

  8. sealed trait ConsumerRebalanceEvent extends AnyRef

    Permalink
    Annotations
    @ApiMayChange()
  9. class ConsumerSettings[K, V] extends AnyRef

    Permalink

    Settings for consumers.

    Settings for consumers. See akka.kafka.consumer section in reference.conf. Note that the companion object provides apply and create functions for convenient construction of the settings, together with the with methods.

    The constructor is Internal API.

  10. class InitialPollFailed extends ConsumerFailed

    Permalink
  11. final case class KafkaConnectionFailed(te: TimeoutException, attempts: Int) extends Exception with Product with Serializable

    Permalink
  12. sealed trait ManualSubscription extends Subscription

    Permalink

    Kafka-speak for these is "Assignments".

  13. class ProducerSettings[K, V] extends AnyRef

    Permalink

    Settings for producers.

    Settings for producers. See akka.kafka.producer section in reference.conf. Note that the companion object provides apply and create functions for convenient construction of the settings, together with the with methods.

    The constructor is Internal API.

  14. final class RestrictedConsumer extends AnyRef

    Permalink

    Offers parts of the org.apache.kafka.clients.consumer.Consumer API which becomes available to the akka.kafka.scaladsl.PartitionAssignmentHandler callbacks.

    Offers parts of the org.apache.kafka.clients.consumer.Consumer API which becomes available to the akka.kafka.scaladsl.PartitionAssignmentHandler callbacks.

    Annotations
    @ApiMayChange()
  15. sealed trait Subscription extends AnyRef

    Permalink
  16. final case class TopicPartitionsAssigned(sub: Subscription, topicPartitions: Set[TopicPartition]) extends ConsumerRebalanceEvent with Product with Serializable

    Permalink
    Annotations
    @ApiMayChange()
  17. final case class TopicPartitionsRevoked(sub: Subscription, topicPartitions: Set[TopicPartition]) extends ConsumerRebalanceEvent with Product with Serializable

    Permalink
    Annotations
    @ApiMayChange()
  18. class WakeupsExceeded extends ConsumerFailed

    Permalink

Value Members

  1. object CommitDelivery

    Permalink

    Selects how the stream delivers commits to the internal actor.

    Selects how the stream delivers commits to the internal actor.

    Annotations
    @ApiMayChange()
  2. object CommitWhen

    Permalink

    Selects when the stream will commit an offset.

    Selects when the stream will commit an offset.

    Annotations
    @ApiMayChange()
  3. object CommitterSettings

    Permalink
  4. object ConnectionCheckerSettings

    Permalink
  5. object ConsumerMessage

    Permalink

    Classes that are used in both javadsl.Consumer and scaladsl.Consumer.

  6. object ConsumerSettings

    Permalink
  7. object KafkaConsumerActor

    Permalink
  8. object Metadata

    Permalink

    Messages for Kafka metadata fetching via KafkaConsumerActor.

    Messages for Kafka metadata fetching via KafkaConsumerActor.

    NOTE: Processing of these requests blocks the actor loop. The KafkaConsumerActor is configured to run on its own dispatcher, so just as the other remote calls to Kafka, the blocking happens within a designated thread pool. However, calling these during consuming might affect performance and even cause timeouts in extreme cases.

  9. object ProducerMessage

    Permalink

    Classes that are used in both javadsl.Producer and scaladsl.Producer.

  10. object ProducerSettings

    Permalink
  11. object Subscriptions

    Permalink
  12. package internal

    Permalink
  13. package javadsl

    Permalink
  14. package scaladsl

    Permalink

Ungrouped