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