Skip to content

Commit

Permalink
State Transitions for RTCIceGatherer
Browse files Browse the repository at this point in the history
Fix for #606
  • Loading branch information
aboba committed Oct 25, 2016
1 parent 850c11d commit 6bd87e8
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,9 @@ <h2>Methods</h2>
<dt><dfn><code>gather</code></dfn></dt>
<dd>
<p>Gather ICE candidates. If <var>options</var> is omitted, utilize the
value of <var>options</var> passed in the constructor.</p>
value of <var>options</var> passed in the constructor. If
<code>state</code> is <code>closed</code>, throw an
<code>InvalidStateError</code> exception.</p>
<table class="parameters">
<tbody>
<tr>
Expand All @@ -316,7 +318,9 @@ <h2>Methods</h2>
</dd>
<dt><dfn><code>getLocalParameters</code></dfn></dt>
<dd>
<p>Obtain the ICE parameters of the <code><a>RTCIceGatherer</a></code>.</p>
<p>Obtain the ICE parameters of the <code><a>RTCIceGatherer</a></code>.
If <code>state</code> is <code>closed</code>, throw an
<code>InvalidStateError</code> exception.</p>
<div>
<em>No parameters.</em>
</div>
Expand All @@ -331,7 +335,8 @@ <h2>Methods</h2>
candidates currently known (except for peer reflexive candidates), even if
an <code><a>onlocalcandidate</a></code> event hasn't been processed yet.
Prior to calling <code><a>gather</a>()</code> an empty list will be
returned.</p>
returned. If <code>state</code> is <code>closed</code>, throw an
<code>InvalidStateError</code> exception.</p>
<div>
<em>No parameters.</em>
</div>
Expand Down Expand Up @@ -690,7 +695,7 @@ <h3>enum RTCIceGathererState</h3>
"idl-def-RTCIceGathererState.closed">closed</code></dfn></td>
<td>
<p>The <code><a>RTCIceGatherer</a></code> has been closed intentionally
(by calling <code>close()</code>).</p>
(by calling <code>close()</code>). This is a terminal state.</p>
</td>
</tr>
</tbody>
Expand Down

0 comments on commit 6bd87e8

Please sign in to comment.