Link to home
Start Free TrialLog in
Avatar of GouthamAnand
GouthamAnand

asked on

Notifying one object to another object in a list of objects

I have a list of objects. If the process in one object is completed, then it should be notified to other objects to start their process. How do I achieve this?


I have list of Jobs.
Job is an object with properties JobId, JobName, precedingJobID.
If the process in preceding job is completed then I have to start processing of all the jobs which are having precedingJobID registered with the one completed.

how do I chieve this?
ASKER CERTIFIED SOLUTION
Avatar of rpkhare
rpkhare
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of GouthamAnand
GouthamAnand

ASKER

Thanks a lot.