La méthode terminate()
de l'interface Worker
termine immédiatement le Worker
. Cette interruption ne permet pas au worker de finaliser ses opérations. Il est juste arrêté sur le champ.
Syntaxe
myWorker.terminate();
Paramètres
Aucun.
Valeur de retour
Néant.
Exemple
L'extrait de code suivant montre la création d'un objet Worker
en utilisant le constructeur Worker()
, qui est alors immédiatement interrompu.
var myWorker = new Worker("worker.js"); myWorker.terminate();
Spécifications
Spécification | Statut | Commentaire |
---|---|---|
WHATWG HTML Living Standard La définition de 'Worker.postMessage()' dans cette spécification. |
Living Standard | Aucune modification de Web Workers. |
Web Workers La définition de 'Worker.postMessage()' dans cette spécification. |
Candidate Recommendation | Définition initiale. |
Compatibilité des navigateurs
Fonctionnalité | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 4 | 3.5 | 10.0 | 10.6 | 4 |
Fonctionnalité | Android | Firefox Mobile (Gecko) | Firefox OS (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 4.4 | 3.5 | 1.0.1 | 10.0 | 11.5 | 5.1 |
Voir aussi
L'interface Worker
à laquelle elle appartient.
Étiquettes et contributeurs liés au document
Contributeurs à cette page :
fscholz,
jean-pierre.gay
Dernière mise à jour par :
jean-pierre.gay,