simonewebdesign / elixir_pubsub

:droplet: Publish/Subscribe utility module
https://hexdocs.pm/pubsub
MIT License
69 stars 11 forks source link

Nested topics #1

Open marconi opened 8 years ago

marconi commented 8 years ago

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. :)

simonewebdesign commented 8 years ago

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. 👍

MichaelDimmitt commented 5 years ago

@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: 1) 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. 1) PubSub is used to publish from an infinite stream to subscribed processes. 2) PubSub did help to simplify my task allowing me to focus on the business logic.👍