Packages

An event_bus data store building with Broadway.

Current section

Files

Jump to
event_bus_datastore lib event_bus_datastore.ex
Raw

lib/event_bus_datastore.ex

defmodule EventBusDatastore do
@moduledoc """
Documentation for `EventBusDatastore`.
"""
@doc """
Hello world.
## Examples
iex> EventBusDatastore.hello()
:world
"""
def process({_topic, _id} = event_shadow) do
EventBusDatastore.Producer.put(event_shadow)
end
end