View Source KafkaEx.NetworkClient.Behaviour behaviour (kafka_ex v0.14.0)

Behaviour for any network client. Created mainly to allow mocking request & responses in unit tests.

Summary

Callbacks

Close socket, if socket is nil, do nothing.

Creates a socket to the given host and port.

Returns the host in Erlang IP address format if the host is an IP address. Otherwise, returns the host as a char list.

Send request asynchronously to broker.

Send request synchronously to broker.

Types

@type host() :: binary()
@type host_port() :: non_neg_integer()
@type kafka_ex_broker() ::
  KafkaEx.Protocol.Metadata.Broker.t() | KafkaEx.New.Structs.Broker.t()
@type kafka_ex_socket() :: KafkaEx.Socket.t()
@type request_data() :: iodata()
@type response_data() :: iodata()
@type use_ssl() :: boolean()

Callbacks

@callback close_socket(kafka_ex_socket() | nil) :: :ok

Close socket, if socket is nil, do nothing.

Link to this callback

create_socket(host, host_port)

View Source
@callback create_socket(host(), host_port()) :: kafka_ex_socket() | nil

Creates a socket to the given host and port.

Link to this callback

create_socket(host, host_port, ssl_options)

View Source
@callback create_socket(host(), host_port(), KafkaEx.ssl_options()) ::
  kafka_ex_socket() | nil
Link to this callback

create_socket(host, host_port, ssl_options, use_ssl)

View Source
@callback create_socket(host(), host_port(), KafkaEx.ssl_options(), use_ssl()) ::
  kafka_ex_socket() | nil
@callback format_host(binary()) :: [char()] | :inet.ip_address()

Returns the host in Erlang IP address format if the host is an IP address. Otherwise, returns the host as a char list.

Link to this callback

send_async_request(kafka_ex_broker, request_data)

View Source
@callback send_async_request(kafka_ex_broker(), request_data()) ::
  :ok | {:error, :closed | :inet.posix()}

Send request asynchronously to broker.

Link to this callback

send_sync_request(kafka_ex_broker, iodata, timeout)

View Source
@callback send_sync_request(kafka_ex_broker(), iodata(), timeout()) ::
  response_data() | {:error, any()}

Send request synchronously to broker.