Changes between Version 4 and Version 5 of pjsip-doc/call


Ignore:
Timestamp:
Dec 4, 2013 9:37:16 AM (10 years ago)
Author:
ming
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pjsip-doc/call

    v4 v5  
    106106You can invoke operations to the Call object, such as hanging up, putting the call on hold, sending re-INVITE, etc. Please see the reference documentation of Call for more info. 
    107107 
     108Instant Messaging(IM) 
     109--------------------- 
     110You can send IM within a call using Call.sendInstantMessage(). The transmission status of outgoing instant messages is reported in ​Call.onInstantMessageStatus() callback method. 
     111 
     112In addition to sending instant messages, you can also send typing indication using Call.sendTypingIndication(). 
     113 
     114Incoming IM and typing indication received within a call will be reported in the callback functions Call.onInstantMessage() and Call.onTypingIndication(). 
     115 
     116Alternatively, you can send IM and typing indication outside a call by using Buddy.sendInstantMessage() and Buddy.sendTypingIndication(). For more information, please see Presence documentation. 
     117 
     118 
    108119}}}