On Sat, Nov 15, 2014 at 6:35 AM, Микола Патько
<
mykola.f...@gmail.com> wrote:
> How do I get all messages from the channel?
> When user enters, that he could see all messages from the channel
The user's client can subscribe to the channel, with a specified
function being invoked for each new message sent to that channel:
subs[i] = client.subscribe('/WEnotes/theChannel', function(msg) {
newPost(i, msg);
});
If you mean receive messages sent to the channel before he connected,
that is outside the scope of Faye. You will need to implement another
mechanism for retrieving the historical messages. (I use CouchDB with
views that copy my channels.)