Skip to content

Instantly share code, notes, and snippets.

@radzserg
Created January 16, 2019 12:45
Show Gist options
  • Select an option

  • Save radzserg/34e636f716df164c8a1e1b316da5e0f2 to your computer and use it in GitHub Desktop.

Select an option

Save radzserg/34e636f716df164c8a1e1b316da5e0f2 to your computer and use it in GitHub Desktop.
defmodule App.EventDispatcher do
use Rsed.EventDispatcher, name: :my_app_ed
def configure() do
%{}
|> Rsed.ListenersBag.add_subscriber(App.Users.UserRegistrationSubscriber)
|> Rsed.ListenersBag.add_listener(:user_sign_up, {App.Users.RegistrationEmail, :send_email}, 0)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment