Hi,
I have an event listener that listens to JobCompletedEvent. Now when that event happens, I want to get a list of all Jobs associated with that corresponding plan. How do I do that?
I tried to get PlanKey from jobCompletedEvent.getPlanKey() but that's the key of the job per se but not the Plan the job belongs to. Ex: TEST-TEST-JOB1.
What I want is the key of the parent. Ex: TEST-TEST
Once I get the PlanKey of the Plan, I guess I can get the jobs associated with it from jobService.getJobsForPlan(PlanKey planKey).
Please let me know how to get the planKey of the Plan associated with a job.
Found it.
jobService.getJob(PlanKey).getParent().getKey()
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.