Current section
Files
Jump to
Current section
Files
lib/reactive_commons/messaging/out_message.ex
defmodule OutMessage do
defstruct [
headers: [],
content_encoding: "UTF-8",
content_type: "application/json",
persistent: true,
exchange_name: nil,
routing_key: nil,
payload: nil,
]
def new(props) do
struct(__MODULE__, props)
end
end