Class TestAbortableJobPerformable
- java.lang.Object
-
- de.hybris.platform.servicelayer.cronjob.AbstractJobPerformable
-
- de.hybris.platform.servicelayer.cronjob.TestAbortableJobPerformable
-
- All Implemented Interfaces:
JobPerformable
public class TestAbortableJobPerformable extends AbstractJobPerformable
An abortable job for testing.
-
-
Field Summary
-
Fields inherited from class de.hybris.platform.servicelayer.cronjob.AbstractJobPerformable
flexibleSearchService, modelService, sessionService
-
-
Constructor Summary
Constructors Constructor Description TestAbortableJobPerformable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAbortable()Checks whether the execution is implemented abortable.PerformResultperform(CronJobModel cronJob)The execution body for aServicelayerJob.-
Methods inherited from class de.hybris.platform.servicelayer.cronjob.AbstractJobPerformable
clearAbortRequestedIfNeeded, isPerformable, setFlexibleSearchService, setModelService, setSessionService
-
-
-
-
Method Detail
-
perform
public PerformResult perform(CronJobModel cronJob)
Description copied from interface:JobPerformableThe execution body for aServicelayerJob. Implement here your execution logic. It can be called synchronous or asynchronous. So be aware of thread-safety. Method will return a result object saying if the execution has reached end and if it was successful.- Specified by:
performin interfaceJobPerformable- Specified by:
performin classAbstractJobPerformable- Parameters:
cronJob- the related CronJob in whose context the execution will be performed.- Returns:
- a
PerformResultthat indicates whether theexecutionwas successfully executed or not and has finished or not.
-
isAbortable
public boolean isAbortable()
Description copied from interface:JobPerformableChecks whether the execution is implemented abortable.- Specified by:
isAbortablein interfaceJobPerformable- Overrides:
isAbortablein classAbstractJobPerformable- Returns:
- true if the execution can be aborted
-
-