Yggdrasil.Subscriber.Publisher.notify

You're seeing just the function notify, go back to Yggdrasil.Subscriber.Publisher module for more information.
Link to this function

notify(channel, message, metadata \\ nil)

View Source

Notifies synchronously of a new message coming from a channel.

Link to this function

notify(publisher, channel_name, message, metadata)

View Source

Specs

notify(
  publisher :: GenServer.name(),
  channel_name :: term(),
  message :: term(),
  metadata :: term()
) :: :ok | {:error, term()}

Notifies synchronously of a new message coming from a channel_name to a publisher with some metadata.