Mutex and autoresetevent and manualresetevent

Source: Internet
Author: User

Mutex
M. waitone ();
Try {
Console. writeline ("START Resource Access (thread = {0})", threadnum );
Thread. Sleep (500 );
Console. writeline ("stop resource access (thread = {0})", threadnum );
}
Finally {
M. releasemutex ();
}

Autoresetevent
Autoresetevent myresetevent = new autoresetevent (false );
Myresetevent. waitone ();
// Waite other thread1 complete
Myresetevent. waitone ();
// Waite other thread2 complete
Myresetevent. waitone ();
Run current thread;
// In other thread run
Myresetevent. Set ();

Automatic Reset () will be executed before the next waitone. That is, when the second myresetevent. waitone () is executed, the current thread is terminated, waiting for myresetevent. Set () manualresetevent
Manualresetevent manualevent = new manualresetevent (false );
// Waite other thread1 complete
Manualevent. waitone ();
// Waite other thread2 complete
Manualevent. waitone ();
Run current thread;
// In other thread run
Manualevent. Set ();

Manual reset () is required. If reset () is not executed, the second waitone () will not wait again.

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.