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

  4. class ConsumerFailed extends RuntimeException

    Permalink

    Kafka consumer stages fail with this exception.

  5. sealed trait ConsumerRebalanceEvent extends AnyRef

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

  7. class InitialPollFailed extends ConsumerFailed

    Permalink
  8. sealed trait ManualSubscription extends Subscription

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

  10. sealed trait Subscription extends AnyRef

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

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

    Permalink
  13. class WakeupsExceeded extends ConsumerFailed

    Permalink

Value Members

  1. object CommitterSettings

    Permalink
  2. object ConsumerMessage

    Permalink

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

  3. object ConsumerSettings

    Permalink
  4. object KafkaConsumerActor

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

  6. object ProducerMessage

    Permalink

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

  7. object ProducerSettings

    Permalink
  8. object Subscriptions

    Permalink
  9. package javadsl

    Permalink
  10. package scaladsl

    Permalink

Ungrouped