Suppose I have a process Load Queue (process X) that fills the Work Queue with elements that needs to be handled (Only one resource can do this). Is it possible when this process ends to signal multiple resources to start another process for processing the workqueue? Like if process X ends for each available resource start process Y on it ?
What you're looking for is scheduling Tasks as part of a larger Schedule. What you're attempting is detailed in the Blue Prism - Guide to the Scheduler document, available on the Blue Prism Portal under the "Documents" tab.
The high-level process you'd have to follow (using the above guide for reference) to achieve your desired functionality would be:
You'll see that the first process is executed on the single resource you've selected. Only once that process has been Completed will the Schedule will then launch the processing phase on the multiple resources you've assigned it to.