validateMaxLength static method

void validateMaxLength(
  1. MqttTopic topicInstance
)

Validates that the topic does not exceed the maximum length. topicInstance - The instance to check.

Implementation

static void validateMaxLength(MqttTopic topicInstance) {
  if (topicInstance.rawTopic!.length > maxTopicLength) {
    throw Exception('mqtt_client::Topic: The length of the supplied rawTopic '
        '(${topicInstance.rawTopic!.length}) is longer than the '
        'maximum allowable ($maxTopicLength)');
  }
}