View Source Lapin.Message.Payload protocol (lapin v1.0.6)

You can use this protocol to implement a custom message payload transformation. For example you could implement a JSON message with a predefined structure by first implementing a struct for your payload:

defmodule Example.Payload do
  defstruct [a: "a", b: "b", c: nil]
end

and then providing an implementation of Lapin.Message.Payload for it:

defimpl Lapin.Message.Payload, for: Example.Payload do
  def content_type(_payload), do: "application/json"
  def encode(payload), do: Poison.encode(payload)
  def decode_into(payload, data), do: Poison.decode(data, as: payload)
end

Please note you will need to add the poison library as a dependency on in your project mix.exs for this to work.

Lapin will automatically encode and set the content-type property on publish.

To decode messages before consuming, implement the payload_for/2 callback of Lapin.Connection and return an instance of the payload to decode into.

defmodule Example.Connection do
  def payload_for(_channel, _message), do: %Example.Payload{}
end

The default implementation simply returns the unaltered binary data and sets the message content-type property to nil.

Summary

Types

MIME content-type as defined by RFC 2045

Decode function return values

Encode function return values

t()

Data type implementing the Lapin.Message.Payload protocol

Functions

Returns the message content-type

Returns the payload with message data decoded

Returns the encoded payload body

Types

@type content_type() :: String.t() | nil

MIME content-type as defined by RFC 2045

@type on_decode() :: {:ok, t()} | {:error, term()}

Decode function return values

@type on_encode() :: {:ok, binary()} | {:error, term()}

Encode function return values

@type t() :: term()

Data type implementing the Lapin.Message.Payload protocol

Functions

@spec content_type(t()) :: content_type()

Returns the message content-type

Link to this function

decode_into(payload, data)

View Source
@spec decode_into(t(), binary()) :: on_decode()

Returns the payload with message data decoded

@spec encode(t()) :: on_encode()

Returns the encoded payload body