Package com.soffid.iam.service
Interface AsyncRunnerService
-
public interface AsyncRunnerService
Service AsyncRunnerService
-
-
Field Summary
Fields Modifier and Type Field Description static String
SERVICE_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
run(Runnable runnable, AsyncList result)
Operation runvoid
runInternal(Runnable runnable, AsyncList result)
Operation runInternalObject
runNewTransaction(TransactionalTask runnable)
Operation runNewTransactionObject
runTransaction(TransactionalTask runnable)
Operation runTransaction
-
-
-
Field Detail
-
SERVICE_NAME
static final String SERVICE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
runNewTransaction
Object runNewTransaction(TransactionalTask runnable) throws InternalErrorException
Operation runNewTransaction- Parameters:
runnable
-- Returns:
- Throws:
InternalErrorException
-
runTransaction
Object runTransaction(TransactionalTask runnable) throws InternalErrorException
Operation runTransaction- Parameters:
runnable
-- Returns:
- Throws:
InternalErrorException
-
run
void run(Runnable runnable, AsyncList result) throws InternalErrorException
Operation run- Parameters:
runnable
-result
-- Throws:
InternalErrorException
-
runInternal
void runInternal(Runnable runnable, AsyncList result) throws InternalErrorException
Operation runInternal- Parameters:
runnable
-result
-- Throws:
InternalErrorException
-
-