withAuthenticationMethod method

MqttAuthenticateMessage withAuthenticationMethod(
  1. String method
)

Sets the authentication method.

Implementation

MqttAuthenticateMessage withAuthenticationMethod(String method) {
  variableHeader!.authenticationMethod = method;
  return this;
}