CLR via C # Reading Notes 3-1 Implementation of a single-instance application (semaphore)

Source: Internet
Author: User

Single-instance applicationsProgramYou can only open one program in your operating system.

For example, Outlook

BelowCodeA single instance is controlled through semaphore

(In fact, you can use either eventwaithandle or mutex)

The principle is that Windows does not allow duplicate key objects. In this example"Someuniquestringidentifyingmyapp"

When semaphore is called for the first time, the system creates an object and sets creatednew to true.

When semaphore is called for the second time, the system returns an existing object with the same name and sets creatednew to false.

 

  Using  System;
Using System. Threading;
Public Static Class Program
{
Public Static Void Main ()
{
Boolean creatednew;
// Try to create a kernel object with the specified name
Using ( New Semaphore ( 0 , 1 , " Someuniquestringidentifyingmyapp " , Out Creatednew ))
{
If (Creatednew)
{
// This thread created the kernel object so no other instance of this
// Application must be running. Run the rest of the application here...
}
Else
{
// This thread opened an existing kernel object with the same string name;
// Another instance of this application must be running now.
// There is nothing to do in here, let's just return from main to terminate
// This second instance of the application.
}
}
}
}

 

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.