Object

akka.kafka

Metadata

Related Doc: package kafka

Permalink

object Metadata

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.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Metadata
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class BeginningOffsets(response: Try[Map[TopicPartition, Long]]) extends Response with NoSerializationVerificationNeeded with Product with Serializable

    Permalink
  2. final case class CommittedOffset(response: Try[OffsetAndMetadata]) extends Response with NoSerializationVerificationNeeded with Product with Serializable

    Permalink
  3. final case class EndOffsets(response: Try[Map[TopicPartition, Long]]) extends Response with NoSerializationVerificationNeeded with Product with Serializable

    Permalink
  4. final case class GetBeginningOffsets(partitions: Set[TopicPartition]) extends Request with NoSerializationVerificationNeeded with Product with Serializable

    Permalink

    org.apache.kafka.clients.consumer.KafkaConsumer#beginningOffsets()

    org.apache.kafka.clients.consumer.KafkaConsumer#beginningOffsets()

    Warning: KafkaConsumer documentation states that this method may block indefinitely if the partition does not exist.

  5. final case class GetCommittedOffset(partition: TopicPartition) extends Request with NoSerializationVerificationNeeded with Product with Serializable

    Permalink

    org.apache.kafka.clients.consumer.KafkaConsumer#committed()

  6. final case class GetEndOffsets(partitions: Set[TopicPartition]) extends Request with NoSerializationVerificationNeeded with Product with Serializable

    Permalink

    org.apache.kafka.clients.consumer.KafkaConsumer#endOffsets()

    org.apache.kafka.clients.consumer.KafkaConsumer#endOffsets()

    Warning: KafkaConsumer documentation states that this method may block indefinitely if the partition does not exist.

  7. final case class GetOffsetsForTimes(timestampsToSearch: Map[TopicPartition, Long]) extends Request with NoSerializationVerificationNeeded with Product with Serializable

    Permalink

    org.apache.kafka.clients.consumer.KafkaConsumer#offsetsForTimes()

    org.apache.kafka.clients.consumer.KafkaConsumer#offsetsForTimes()

    Warning: KafkaConsumer documentation states that this method may block indefinitely if the partition does not exist.

  8. final case class GetPartitionsFor(topic: String) extends Request with NoSerializationVerificationNeeded with Product with Serializable

    Permalink

    org.apache.kafka.clients.consumer.KafkaConsumer#partitionsFor()

  9. final case class OffsetsForTimes(response: Try[Map[TopicPartition, OffsetAndTimestamp]]) extends Response with NoSerializationVerificationNeeded with Product with Serializable

    Permalink
  10. final case class PartitionsFor(response: Try[List[PartitionInfo]]) extends Response with NoSerializationVerificationNeeded with Product with Serializable

    Permalink
  11. sealed trait Request extends AnyRef

    Permalink
  12. sealed trait Response extends AnyRef

    Permalink
  13. final case class Topics(response: Try[Map[String, List[PartitionInfo]]]) extends Response with NoSerializationVerificationNeeded with Product with Serializable

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object ListTopics extends Request with NoSerializationVerificationNeeded with Product with Serializable

    Permalink

    org.apache.kafka.clients.consumer.KafkaConsumer#listTopics()

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def createGetBeginningOffsets(partitions: Set[TopicPartition]): GetBeginningOffsets

    Permalink

    Java API: org.apache.kafka.clients.consumer.KafkaConsumer#beginningOffsets()

    Java API: org.apache.kafka.clients.consumer.KafkaConsumer#beginningOffsets()

    Warning: KafkaConsumer documentation states that this method may block indefinitely if the partition does not exist.

  8. def createGetCommitedOffset(partition: TopicPartition): GetCommittedOffset

    Permalink

    Java API: org.apache.kafka.clients.consumer.KafkaConsumer#committed()

  9. def createGetEndOffsets(paritions: Set[TopicPartition]): GetEndOffsets

    Permalink

    Java API: org.apache.kafka.clients.consumer.KafkaConsumer#endOffsets()

    Java API: org.apache.kafka.clients.consumer.KafkaConsumer#endOffsets()

    Warning: KafkaConsumer documentation states that this method may block indefinitely if the partition does not exist.

  10. def createGetOffsetForTimes(timestampsToSearch: Map[TopicPartition, Long]): GetOffsetsForTimes

    Permalink

    Java API: org.apache.kafka.clients.consumer.KafkaConsumer#offsetsForTimes()

    Java API: org.apache.kafka.clients.consumer.KafkaConsumer#offsetsForTimes()

    Warning: KafkaConsumer documentation states that this method may block indefinitely if the partition does not exist.

  11. def createGetPartitionsFor(topic: String): GetPartitionsFor

    Permalink

    Java API: org.apache.kafka.clients.consumer.KafkaConsumer#partitionsFor()

  12. def createListTopics: ListTopics.type

    Permalink

    Java API: org.apache.kafka.clients.consumer.KafkaConsumer#listTopics()

  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped