View Source KafkaEx.New.Structs.ConsumerGroup.Member.MemberAssignment.PartitionAssignment (kafka_ex v0.14.0)

Encapsulates what we know about a consumer group member partition assignment. Will only be present if the group is stable and is assigned to given topic.

Summary

Types

@type response_partial() :: %{topic: binary(), partitions: [non_neg_integer()]}
@type t() ::
  %KafkaEx.New.Structs.ConsumerGroup.Member.MemberAssignment.PartitionAssignment{
    partitions: [non_neg_integer()],
    topic: binary()
  }

Functions

Link to this function

from_describe_group_response(response)

View Source
@spec from_describe_group_response(response_partial()) :: t()