Package

akka

kafka

Permalink

package kafka

Visibility
  1. Public
  2. All

Type Members

  1. sealed trait AutoSubscription extends Subscription

    Permalink
  2. class CommitTimeoutException extends TimeoutException

    Permalink

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

  3. class ConsumerFailed extends RuntimeException

    Permalink

    Kafka consumer stages fail with this exception.

  4. sealed trait ConsumerRebalanceEvent extends AnyRef

    Permalink
  5. 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.

  6. sealed trait ManualSubscription extends Subscription

    Permalink
  7. 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.

  8. sealed trait Subscription extends AnyRef

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

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

    Permalink

Value Members

  1. object ConsumerMessage

    Permalink

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

  2. object ConsumerSettings

    Permalink
  3. object KafkaConsumerActor

    Permalink
  4. 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.

  5. object ProducerMessage

    Permalink

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

  6. object ProducerSettings

    Permalink
  7. object Subscriptions

    Permalink
  8. package internal

    Permalink
  9. package javadsl

    Permalink
  10. package scaladsl

    Permalink

Ungrouped