Erlang process execution cycle

Source: Internet
Author: User

For example, the following code
Make_process (list) When is_list (list)->

Pid1 = spawn (fun ()-> do_action (list) end), register (pid1, pid1), pid2 = spawn (fun ()-> do_action () end ), register (pid2, pid2 ).

Do_action (list)->

Receive {OK, data}-> IO: Format ("Hello world !~ N ") End, do_action (list ).

Do_action ()->

IO: Format ("XXXXXXXX ~ N ").

After the execution is complete, you can view through is_process_alive (where (pid1) that the pid1 process is still being executed. The pid2 process does not exist after it has been executed.
Therefore, to generate a continuously running process in Erlang, it needs to be continuously executed. Receive accepts the message, receives the message, deletes it from the message mailbox, and then
Wait until messages are received. This is the lifecycle of the Erlang process.

Erlang process execution cycle

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.