Skip to content

Latest commit

 

History

History
76 lines (52 loc) · 1.12 KB

README.md

File metadata and controls

76 lines (52 loc) · 1.12 KB

emqtt-bus

A broker-less MQTT messaging bus for distributed real-time applications.

Build

$ make

Run

$ make run

Pub/Sub

Open console 1:

emqtt_bus:subscribe("t").

Open console 2:

emqtt_bus:publish("t", "p").

Query peers on any console:

emqtt_bus:peers().

Domain

Each MQTT bus is physically isolated in a domain, which is identified by the domain ID.

Create an MQTT bus in domain 1:

emqtt_bus:open(1).
emqtt_bus:subscribe(1, "t").
emqtt_bus:publish(1, "t", "p").

Create an MQTT bus in domain 2:

emqtt_bus:open(2).
emqtt_bus:subscribe(2, "t").
emqtt_bus:publish(2, "t", "p").

Router

A router routes messages between different MQTT buses.

emqtt_bus_router:start_link(1, 2).

Bridge

A bridge routes messages between an MQTT bus and an MQTT broker.

emqtt_bus_bridge:start_link(1, [{host, "broker.emqx.io"}]).
emqtt_bus:publish(1, "t", "d").

Use mqttx to connect to broker.emqx.io and subscribe to the "t" topic, you will receive messages published from the MQTT bus 1.