Phoenix v1.4.18 Phoenix.Socket.Serializer behaviour View Source
A behaviour that serializes incoming and outgoing socket messages.
By default Phoenix provides Phoenix.Socket.V2.JSONSerializer that
encodes to JSON and decodes JSON messages.
Custom serializers may be configured in the socket.
Link to this section Summary
Callbacks
Decodes iodata into Phoenix.Socket.Message struct.
Encodes Phoenix.Socket.Message and Phoenix.Socket.Reply structs to push format.
Encodes a Phoenix.Socket.Broadcast struct to fastlane format.
Link to this section Callbacks
Link to this callback
decode!(iodata, options)
View Sourcedecode!(iodata(), options :: Keyword.t()) :: Phoenix.Socket.Message.t()
Decodes iodata into Phoenix.Socket.Message struct.
Link to this callback
encode!(arg1)
View Sourceencode!(Phoenix.Socket.Message.t() | Phoenix.Socket.Reply.t()) :: {:socket_push, :text, iodata()} | {:socket_push, :binary, iodata()}
Encodes Phoenix.Socket.Message and Phoenix.Socket.Reply structs to push format.
Link to this callback
fastlane!(arg1)
View Sourcefastlane!(Phoenix.Socket.Broadcast.t()) :: {:socket_push, :text, iodata()} | {:socket_push, :binary, iodata()}
Encodes a Phoenix.Socket.Broadcast struct to fastlane format.