View Single Post
Old 04-21-2002, 02:38 PM   #15
Yui Unifex
Senior Member
 
Join Date: Apr 2002
Location: Florida
Posts: 323
Yui Unifex is on a distinguished road
Send a message via ICQ to Yui Unifex Send a message via AIM to Yui Unifex
So then an individual channel subscription is a refresh? Do you mean to say that each (un)subscription is propogated through the network less than instantaneously? Why?

Ohh, I meant specific hooks. Something like:
[code] #include <library.h>
/* on the receiving end... */
set_received_channel_subscription_callback(channel _subscribed);
set_received_channel_unsubscription_callback(chann el_unsubscribed);
set_received_message_callback(message_received);

/* on the sending end... */
send_channel_subscription(channel_name);
send_channel_unsubscription(channel_name);
send_message(channel_name, from_user, message);[/quote]

Where each callback has a specific functional interface. I don't mean the callbacks themselves, that could be as complex as you want it to be =).
Yui Unifex is offline   Reply With Quote