View Source KafkaEx.New.Client.Protocol behaviour (kafka_ex v0.14.0)

This module is responsible for defining the behaviour of a protocol.

Summary

Types

@type api_version() :: non_neg_integer()
@type consumer_group() :: KafkaEx.New.Structs.ConsumerGroup
@type params() :: Keyword.t()

Callbacks

Link to this callback

build_request(atom, integer, params)

View Source
@callback build_request(:describe_groups, integer(), params()) :: term()
Link to this callback

parse_response(atom, term)

View Source
@callback parse_response(:describe_groups, term()) ::
  {:ok, [consumer_group()]} | {:error, term()}