View Source Lapin.Exchange (lapin v1.0.7)

Lapin Exchange

Summary

Types

@type name() :: String.t()
@type routing_key() :: String.t()
@type t() :: %Lapin.Exchange{
  binds: [],
  name: name(),
  options: Keyword.t(),
  type: type()
}

Exchange

@type type() :: :direct | :fanout | :topic

Functions

@spec declare(t(), AMQP.Channel.t()) :: :ok | {:error, term()}
@spec new(String.t(), Keyword.t()) :: %Lapin.Exchange{
  binds: term(),
  name: term(),
  options: term(),
  type: term()
}