Disable job requests while running job pattern
Encyclopedia : D : DI : DIS : Disable job requests while running job pattern
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 its possible for the same job to be requested a second time before the first job completes. Parallel processing of the smae 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 serveral times at the same time.
From Wikipedia, the Free Encyclopedia. Original article here. Support Wikipedia by contributing or donating.
All text is available under the terms of the GNU Free Documentation License See Wikipedia Copyrights for details.
