Class ProcessingCoordinator<I>
- java.lang.Object
-
- com.evolveum.midpoint.repo.common.task.ProcessingCoordinator<I>
-
public class ProcessingCoordinator<I> extends Object
TODO
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finishProcessing(OperationResult result)
Tells the workers that they should not expect any more work and waits for their completion (which can occur either because of queue is empty or because canRun is false).boolean
isMultithreaded()
boolean
submit(ItemProcessingRequest<I> request, OperationResult result)
-
-
-
Method Detail
-
submit
public boolean submit(ItemProcessingRequest<I> request, OperationResult result)
-
isMultithreaded
public boolean isMultithreaded()
-
finishProcessing
public void finishProcessing(OperationResult result)
Tells the workers that they should not expect any more work and waits for their completion (which can occur either because of queue is empty or because canRun is false). Acknowledges any pending requests.
-
-