Esempio n. 1
0
 public override void LeaveChannel(IRtmChannel channel)
 {
     channel.Leave();
 }
Esempio n. 2
0
 /**
  * Allows a user to leave a channel
  */
 public abstract void LeaveChannel(IRtmChannel channel);
Esempio n. 3
0
 public override void SendChannelMessageWithOptions(IRtmChannel channel, string channelName, string msg, IRtmWrapper.SendMessageOptions smo)
 {
     Debug.Log("send msg: " + msg);
     channel.SendMessage(msg);
 }
Esempio n. 4
0
 public override void SendChannelMessage(IRtmChannel channel, string channelName, string msg)
 {
     channel.SendMessage(msg);
 }
Esempio n. 5
0
 /**
  * Allows a channel member to send a message to all members in the channel.
  **
  * Note
  * *You can send messages, including peer-to-peer and channel messages, at a maximum speed of 60 queries per second.
  **/
 public abstract void SendChannelMessageWithOptions(IRtmChannel channel, string channelName, string msg, SendMessageOptions smo);
Esempio n. 6
0
 /**
  * Sends a channel message.
  **
  * Note
  * * You can send messages, including peer-to-peer and channel messages, at a maximum speed of 60 queries per second.
  * */
 public abstract void SendChannelMessage(IRtmChannel channel, string channeNamel, string msg);
Esempio n. 7
0
 private void btnJoin_Click(object sender, EventArgs e)
 {
     channel = rtm.JoinChannel(tbChannelName.Text);
 }