View Source Yggdrasil.Subscriber.Adapter.Bridge (Yggdrasil v6.0.2)

Yggdrasil bridge subscriber adapter. The name of the channel is a valid remote Yggdrasil.Channel e.g:

First we subscribe to a channel:

iex> channel = [name: [name: "remote_channel"], adapter: :bridge]
iex> Yggdrasil.subscribe(channel)
:ok
iex> flush()
{:Y_CONNECTED, ...}

Once connected, you can publish a message in that channel:

iex> Yggdrasil.publish(channel, "foo")
:ok

And the subscriber should receive the message:

iex> flush()
{:Y_EVENT, ..., "foo"}

Additionally, the subscriber can also unsubscribe from the channel:

iex> Yggdrasil.unsubscribe(channel)
:ok
iex> flush()
{:Y_DISCONNECTED, ...}

Link to this section Summary

Functions

Returns a specification to start this module under a supervisor.

Starts Elixir.Yggdrasil.Subscriber.Adapter.Bridge with a channel and optional options.

Link to this section Functions

Returns a specification to start this module under a supervisor.

See Supervisor.

Link to this function

start_link(channel, options \\ [])

View Source

Specs

Starts Elixir.Yggdrasil.Subscriber.Adapter.Bridge with a channel and optional options.