Unsubscribes to messages from the specified application on the specified topic.
Example
var callback = function (message, senderUuid) {
console.log(msg, senderUuid);
};
// To Subscribe:
fin.desktop.InterApplicationBus.subscribe("*", "a topic", callback);
// To Unsubscribe:
fin.desktop.InterApplicationBus.unsubscribe("*", "a topic", callback);