Administrator
|
You can define that a concurrent program is incompatible with other concurrent programs. Say that
you define an incompatible rule for concurrent program A with program B. As a results, program A will not
run in parallel with program B. Whenever the request is being submitted, it will check for any incompatible
rules, and if it finds any incompatibilities, then that request will go in the pending phase and wait for other
dependent requests to complete. It will continue to run only after the completion of the currently running
dependent incompatible concurrent request. These concurrent manager dependencies are managed by the
conflict resolution manager
In your case, you should check 2 things; incompatible rules and the specialization rules.
|