查看源代码 Phoenix.Socket.Reply (Phoenix v1.7.14)

定义从频道发送到传输的回复。

消息格式需要以下键

  • :topic - 字符串主题或主题:子主题对命名空间,例如 "messages","messages:123"
  • :status - 回复状态,以原子表示
  • :payload - 回复负载
  • :ref - 唯一的字符串引用
  • :join_ref - 加入时的唯一字符串引用

摘要

类型

@type t() :: %Phoenix.Socket.Reply{
  join_ref: term(),
  payload: term(),
  ref: term(),
  status: term(),
  topic: term()
}