Web worker tasks that consume more CPU resources

Source: Internet
Author: User
Tags event listener

A small example of Web worker, which is suitable for getting started, is recommended to start a service to develop. You can use node's anywhere.

<!    DOCTYPE html>

When a web worker passes a message, the code in the event listener is executed. Data from Event.data is stored in the event.data.

Then we can take and receive messages from the Web worker and add a "onmessage" event listener to the Web worker.

/demo_worker.js
var i=0;function timedcount () {i=i+1;postmessage (i); SetTimeout ("Timedcount ()", 500);} Timedcount ();

The important part of the above code is the PostMessage () method-it is used to return a message to an HTML page

Web worker tasks that consume more CPU resources

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.