Packages

final case class BadConnectMessage(clientId: Either[DecodeError, String], willTopic: Option[Either[DecodeError, String]], willMessage: Option[Either[DecodeError, String]], username: Option[Either[DecodeError, String]], password: Option[Either[DecodeError, String]]) extends DecodeError with Product with Serializable

Something is wrong with the connect message

Source
model.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BadConnectMessage
  2. Serializable
  3. Product
  4. Equals
  5. DecodeError
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new BadConnectMessage(clientId: Either[DecodeError, String], willTopic: Option[Either[DecodeError, String]], willMessage: Option[Either[DecodeError, String]], username: Option[Either[DecodeError, String]], password: Option[Either[DecodeError, String]])

Value Members

  1. val clientId: Either[DecodeError, String]
  2. val password: Option[Either[DecodeError, String]]
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. def toString(): String
    Definition Classes
    BadConnectMessage → AnyRef → Any
  5. val username: Option[Either[DecodeError, String]]
  6. val willMessage: Option[Either[DecodeError, String]]
  7. val willTopic: Option[Either[DecodeError, String]]