elixir_pubsub
elixir_pubsub copied to clipboard
Nested topics
Just wanted to say hello and that thanks for your package. Was able to create elixir_pubsub_plus based off of it which supports nested topics.
Let me know if this is something you would be interested and I'd be happy to open a PR and get rid of elixir_pubsub_plus
. :)
Hi @marconi! Thanks for your interest :)
To be honest I have no idea how people are using this package, but the idea of nested topics sounds pretty useful and the work you did looks neat!
So if you feel up for it then I'd say a PR would be really appreciated. 👍
@simonewebdesign, I used your package in a programming talk about processes: https://github.com/MichaelDimmitt/Elixir-Radio-via-Pid/blob/master/lib/elixir_pub_sub_dep_example.ex
The project is a fictional story of many car radios and radio stations:
- I needed to be able to send "live" information with old messages dropped and only the current information. Sent to a process when it begins listening.
- PubSub is used to publish from an infinite stream to subscribed processes.
- PubSub did help to simplify my task allowing me to focus on the business logic.👍