Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit eb1f9ba

Browse files
author
Eduardo Fullea
committed
adding sendReadReport in markMessageRead and markConversationRead
1 parent 6f99141 commit eb1f9ba

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

index.html

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,15 @@ <h2><a>MessagingManager</a> Interface</h2>
266266
Identifier of the message that is requested to be marked as
267267
read or unread
268268
</dd>
269-
<dt>optional boolean value = true</dt>
269+
<dt>boolean value</dt>
270270
<dd>
271-
Indicates whether the message is to be marked as read ('true',
272-
which is the default) or unread ('false')
271+
Indicates whether the message is to be marked as read ('true') or
272+
unread ('false')
273+
</dd>
274+
<dt>optional boolean sendReadReport value = false</dt>
275+
<dd>
276+
Indicates that, in case a Read Report was requested, it is to be sent
277+
('true') or not ('false', which is the default)
273278
</dd>
274279
</dl>
275280
</dd>
@@ -284,10 +289,16 @@ <h2><a>MessagingManager</a> Interface</h2>
284289
Identifier of the conversation whose messages are requested to be
285290
marked as read or unread
286291
</dd>
287-
<dt>optional boolean value = true</dt>
292+
<dt>boolean value</dt>
288293
<dd>
289294
Indicates whether the messages in the conversation are to be marked as
290-
read ('true', which is the default) or unread ('false')
295+
read ('true') or unread ('false')
296+
</dd>
297+
<dt>optional boolean sendReadReport value = false</dt>
298+
<dd>
299+
Indicates that, in case a Read Report was requested for any MMS
300+
message in the conversation, a Read Report is to be sent ('true') or
301+
not ('false', which is the default)
291302
</dd>
292303
</dl>
293304
</dd>
@@ -419,7 +430,8 @@ <h3>Steps</h3>
419430
<li>Make a request to the system to mark as read/unread (depending on the
420431
<code>value</code> parameter being respectively 'true' or 'false') the
421432
message with identifier equal to the <code>messageID</code> parameter
422-
passed in the request.
433+
passed in the request, and to send a Read Report if
434+
<code>sendReadReport</code> is set to 'true'.
423435
<li>If an <var>error</var> occurs invoke <em>resolver</em>'s <a
424436
class="internalDFN" href="#dfn-reject-algorithm">reject algorithm</a> with
425437
<em>error</em> as the <code>value</code> argument.
@@ -442,7 +454,9 @@ <h3>Steps</h3>
442454
<li>Make a request to the system to mark as read/unread (depending on the
443455
<code>value</code> parameter being respectively 'true' or 'false') the
444456
messages in the conversation with identifier equal to the
445-
<code>conversationID</code> parameter passed in the request.
457+
<code>conversationID</code> parameter passed in the request, and in case
458+
<code>sendReadReport</code> is set to 'true', to send a Read Report for
459+
each of the MMS messages for which it was requested.
446460
<li>If an <var>error</var> occurs invoke <em>resolver</em>'s <a
447461
class="internalDFN" href="#dfn-reject-algorithm">reject algorithm</a> with
448462
<em>error</em> as the <code>value</code> argument.

0 commit comments

Comments
 (0)