ex_mqtt v0.2.0 ExMqtt.Message.ConnAck View Source

Struct for bus ConnAck

Fields

  • session_present : An integer of value either 0,1 representing the session present.
  • return_code : An integer of value either 0,1,2,3,4,5 representing the return code.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %ExMqtt.Message.ConnAck{
  return_code: 1 | 2 | 3 | 4 | 5,
  session_present: 0 | 1,
  type: atom()
}