angular-faye
angular-faye copied to clipboard
Can you implement the WithChannel Feature ?
Can you implement the WithChannel Feature that allows you to get the channel on wich the message was sent in case you subscribe to multiple channels like so:
client.subscribe('/foo/*').withChannel(function(channel, message) {
// handle message
});
some usefull links maybe: https://faye.jcoglan.com/browser/subscribing.html https://github.com/faye/faye/pull/385 https://github.com/faye/faye/commit/52d6df2fe7d2592a69018c2b5ce936ba9a23286a
Thanks!