* @return
* @throws Exception
*/
public static Subscription createSubscription(String brokerLocation, String topic, Callback callback,
int consumerServerPort) throws Exception {
LeadNotificationHandler handler = new LeadNotificationHandler(brokerLocation, topic, callback,
consumerServerPort);
return handler.createSubscription();
}