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

Commit d09db28

Browse files
author
Eduardo Fullea
committed
Adding fetching state for MMS messages #67
1 parent 2709f00 commit d09db28

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

index.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1169,8 +1169,9 @@ <h3>Steps</h3>
11691169
<ol>
11701170
<li>If the <code>messageID</code> parameter passed in the request matches
11711171
with an MMS message that has already been fetched, or to an SMS message go
1172-
to next step, otherwise make a request to the system to fetch the MMS
1173-
message.
1172+
to next step, otherwise set the <code>state</code> of the
1173+
<code>MmsMessage</code> to 'fetching' and make a request to the system to
1174+
fetch the MMS message.
11741175
<li>Let <var>future</var> be a new <code>Future</code> object and
11751176
<var>resolver</var> its associated <code>resolver</code>
11761177
<li>Return <var>future</var> to the caller.
@@ -1885,10 +1886,17 @@ <h2>Enumerations</h2>
18851886
<dl class="idl" title="enum MmsState">
18861887
<dt>not-downloaded</dt>
18871888
<dd>
1888-
The message is an inbound message, for which an MMS mnotification
1889+
The message is an inbound message, for which an MMS notification
18891890
has been received but that has not yet been downloaded.
18901891
</dd>
18911892

1893+
<dt>fetching</dt>
1894+
<dd>
1895+
The message is an inbound message, for which an MMS notification
1896+
has been received and the message is in the process of being
1897+
downloaded.
1898+
</dd>
1899+
18921900
<dt>received</dt>
18931901
<dd>
18941902
The message is an inbound message.

0 commit comments

Comments
 (0)