otobus / event_bus

:surfer: Traceable, extendable and minimalist **event bus** implementation for Elixir with built-in **event store** and **event watcher** based on ETS.

Home Page:https://hexdocs.pm/event_bus

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Are there any plans to decouple event store from event bus?

lessless opened this issue · comments

Hi,

Are there any plans to decouple event store from event bus? Those are two different things really and there should be enough cases for using Event Bus as it is in this library and external event store.

Thanks.

Hi @lessless , I don't have plan for separation of event store but adding new event store is possible in an event driven way. Checkout the sample project https://github.com/otobus/event_bus_postgres.

@mustafaturan thanks for reply. What I mean - I'd rather have an event bus without an event store, or with a transient event store.

Please feel free to fork, there could be many others interested in too. It is MIT license ;)