Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Need help on the below Deprecated API in 6.4 migration

Avatar

Level 2

Hi Team,

Currently I am on the migration of AEM 6.1 to 6.4. The below deprecated api code need to replace in my java class. kindly help me on this.

@Deprecated public static void processJob(org.osgi.service.event.Event job, JobProcessor processor)

Deprecated. - Use the new JobConsumer interface instead.

Process a job in the background and notify its success. This method also sends an acknowledge message to the job event handler.

JobUtil.processJob(event, this);

if(StringUtil.isBlank(localEvent)){

        JobUtil.processJob(event, this); // this is  the line i need replace in handleEvent(Event event) method

   

        }

1 Accepted Solution

Avatar

Correct answer by
Community Advisor
2 Replies

Avatar

Correct answer by
Community Advisor

Avatar

Level 2

Hi Prince,

I already Identified JobConsumer Interface need to use, but I didn't  find any method/reference in the jobConsumer. My need here is to replace below line, Please let me know if you have any idea onthis. Thanks

   JobUtil.processJob(event, this);