Disable job requests while running job pattern
From Wikipedia, the free encyclopedia
This article may not meet the general notability guideline or one of the following specific guidelines for inclusion on Wikipedia: Biographies, Books, Companies, Fiction, Music, Neologisms, Numbers, Web content, or several proposals for new guidelines. If you are familiar with the subject matter, please expand or rewrite the article to establish its notability. The best way to address this concern is to reference published, third-party sources about the subject. If notability cannot be established, the article is more likely to be considered for redirection, merge or ultimately deletion, per Wikipedia:Guide to deletion. This article has been tagged since March 2008. |
This article is orphaned as few or no other articles link to it. Please help introduce links in articles on related topics. (August 2006) |
In Software engineering, the disable job requests while running job pattern is a software design pattern of disabling job requests when necessary.
When a job is requested it is possible for the same job to be requested a second time before the first job completes. Parallel processing of the same job can cause execution resource problems. Either disable the second job or queue it for later execution.
An example of this pattern is a "lock"-file. Often used on Unix-Systems a "lock"-file prevents the same application from running several times at the same time.