Example #1
0
 public void SendMessage(string msg, SendMessageOptions smo)
 {
     //TODO: ADD MESSAGE OPTIONS
     sendChannelMessage(chHandler, msg, onSendChannelMessage);
 }
Example #2
0
 public static extern void sendMessageToPeerWithOptions(string msg, string userId, SendMessageOptions options, OnCompletion callback);
Example #3
0
        public override void SendChannelMessageWithOptions(IRtmChannel channel, string channelName, string msg, SendMessageOptions smo)
        {
            if (!channels.Contains(channelName))
            {
                Debug.LogError("You need to join the channel before you can send a message to it");
                return;
            }

            channel.SendMessage(msg, smo);
        }
Example #4
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);
Example #5
0
 public void SendMessage(string msg, SendMessageOptions smo)
 {
 }