aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/web_workers_api
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:48:25 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:48:25 +0100
commitf2db11d0be377464daa06807f993a562c7dc10ac (patch)
tree9444d300cea8bc73ff4d17be83b42d2350f64ebd /files/ko/web/api/web_workers_api
parentee778d6eea54935fd05022e0ba8c49456003381a (diff)
downloadtranslated-content-f2db11d0be377464daa06807f993a562c7dc10ac.tar.gz
translated-content-f2db11d0be377464daa06807f993a562c7dc10ac.tar.bz2
translated-content-f2db11d0be377464daa06807f993a562c7dc10ac.zip
unslug ko: modify
Diffstat (limited to 'files/ko/web/api/web_workers_api')
-rw-r--r--files/ko/web/api/web_workers_api/using_web_workers/index.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/files/ko/web/api/web_workers_api/using_web_workers/index.html b/files/ko/web/api/web_workers_api/using_web_workers/index.html
index eb0e309e8e..5fda4804ce 100644
--- a/files/ko/web/api/web_workers_api/using_web_workers/index.html
+++ b/files/ko/web/api/web_workers_api/using_web_workers/index.html
@@ -1,7 +1,8 @@
---
title: 웹 워커 사용하기
-slug: Web/API/Web_Workers_API/basic_usage
+slug: Web/API/Web_Workers_API/Using_web_workers
translation_of: Web/API/Web_Workers_API/Using_web_workers
+original_slug: Web/API/Web_Workers_API/basic_usage
---
<div class="summary">
<p>웹 워커는 웹 컨텐츠를 위해서 백그라운드 스레드에서 스크립트를 실행할 간편한 방법을 제공합니다. 워커 스레드는 사용자 인터페이스(UI)를 방해하지 않고 작업을 수행할 수 있습니다. 또한 워커는 ( <code>responseXML</code> 과 <code>channel</code>속성이 언제나 null이지만) <code><a class="internal" href="/en/nsIXMLHttpRequest" title="En/XMLHttpRequest">XMLHttpRequest</a></code> 를 사용하여 I/O작업을 수행할 수도 있습니다. 워커는 생성이 된 후에 생성자가 명시한 이벤트 핸들러로 메세지를 올려서 자신의 하위 작업(spawning task)에 메세지를 전달할 수 도 있습니다. 본 글에서 전용 워커와 공유 워커에 대하여 소개합니다.</p>