Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/techgaun/gproc_pubsub
A simple wrapper on top of gproc for your pubsub needs - untested
https://github.com/techgaun/gproc_pubsub
elixir gproc pubsub
Last synced: 10 days ago
JSON representation
A simple wrapper on top of gproc for your pubsub needs - untested
- Host: GitHub
- URL: https://github.com/techgaun/gproc_pubsub
- Owner: techgaun
- License: apache-2.0
- Created: 2018-05-02T20:39:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-03T04:39:55.000Z (over 6 years ago)
- Last Synced: 2024-10-31T12:14:09.535Z (about 2 months ago)
- Topics: elixir, gproc, pubsub
- Language: Elixir
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GprocPubsub
> A simple wrapper on top of gproc for your pubsub needs
[gproc](https://github.com/uwiger/gproc/) is a really nice process registry for Erlang
and it has a nice API that easily extends to support simple
[pubsub](https://github.com/uwiger/gproc/wiki/Publish-subscribe-with-gproc).
This package is a very simple wrapper on top of `gproc` to build
pubsub based systems.## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `gproc_pubsub` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:gproc_pubsub, "~> 0.1.0"}
]
end
```Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/gproc_pubsub](https://hexdocs.pm/gproc_pubsub).