Interface PrivateContextObjectConsumer<T>
-
- Type Parameters:
T
- The type of the object being consumed
- All Known Implementing Classes:
AbstractThreadedObjectIteratorTask
,AbstractThreadedTask
,RoleTargetCleanupService
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface PrivateContextObjectConsumer<T>
A consumer interface for executing an operation on an item in a private thread
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
threadExecute(sailpoint.api.SailPointContext threadContext, Map<String,Object> parameters, T obj)
Executes the operation on the item
-
-
-
Method Detail
-
threadExecute
Object threadExecute(sailpoint.api.SailPointContext threadContext, Map<String,Object> parameters, T obj) throws sailpoint.tools.GeneralException
Executes the operation on the item- Parameters:
threadContext
- A private context for the current threadparameters
- Any relevant input parameters for the operationobj
- The item on which to operate- Returns:
- An arbitrary output, which can be ignored or not
- Throws:
sailpoint.tools.GeneralException
- if any failures occur during execution
-
-