/* * Send a request to the message broker to be sent messages published with the specified topic name. Wildcards are allowed. */ //TODO Define class Topics and use that private void subscribeToTopics(Topic[] topics) { if (isConnected() == false) { // quick sanity check - don't try and subscribe if we // don't have a connection return; } for (int i = 0; i < topics.Length; i++) { mqttConnection.subscribe(topics[i].Name, topics[i].qos, new SubscribeCB(this)); } }