- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 12 Nov 2008 23:36:28 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/workers
In directory hutz:/tmp/cvs-serv7714
Modified Files:
Overview.html
Log Message:
Rename Worker.close() to Worker.terminate(). (whatwg r63)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/workers/Overview.html,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- Overview.html 12 Nov 2008 23:10:04 -0000 1.55
+++ Overview.html 12 Nov 2008 23:36:26 -0000 1.56
@@ -1796,7 +1796,7 @@
<pre class=idl>[NoInterfaceObject,
<a href="#worker2" title=dom-Worker>Constructor</a>(in DOMString scriptURL)]
interface <dfn id=worker1>Worker</dfn> : <a href="#abstractworker">AbstractWorker</a> {
- void <a href="#close0" title=dom-Worker-close>close</a>();
+ void <a href="#terminate0" title=dom-Worker-terminate>terminate</a>();
void <a href="#postmessage0" title=dom-Worker-postMessage>postMessage</a>(in DOMString message);
void <a href="#postmessage0" title=dom-Worker-postMessage>postMessage</a>(in DOMString message, in <span>MessagePort</span> messagePort);
@@ -1804,10 +1804,10 @@
attribute <span>EventListener</span> <a href="#onmessage0" title=handler-Worker-onmessage>onmessage</a>;
};</pre>
- <p>The <dfn id=close0 title=dom-Worker-close><code>close()</code></dfn>
- method, when invoked, must cause the "<a href="#terminate">terminate a
- worker</a>" algorithm to be run on the worker with with the object is
- associated.
+ <p>The <dfn id=terminate0
+ title=dom-Worker-terminate><code>terminate()</code></dfn> method, when
+ invoked, must cause the "<a href="#terminate">terminate a worker</a>"
+ algorithm to be run on the worker with with the object is associated.
<p><code><a href="#worker1">Worker</a></code> objects act as if they had an
implicit <code>MessagePort</code> associated with them. This port is part
Received on Wednesday, 12 November 2008 23:36:44 UTC