Interface IForCountMediator
- All Known Implementing Classes:
ForCountMediator
public interface IForCountMediator
- Author:
- Silvan Wyss
-
Method Summary
Modifier and TypeMethodDescriptionvoidLets the currentIForCountMediatorrun the given job.voidrun(IntConsumer job) Lets the currentIForCountMediatorrun the given job.runInBackground(Runnable job) Lets the currentIForCountMediatorrun the given job in background.
-
Method Details
-
run
Lets the currentIForCountMediatorrun the given job.- Parameters:
job-- Throws:
RuntimeException- if the given job is null.
-
run
Lets the currentIForCountMediatorrun the given job.- Parameters:
job-- Throws:
RuntimeException- if the given job is null.
-
runInBackground
Lets the currentIForCountMediatorrun the given job in background.- Parameters:
job-- Returns:
- a new
IFuturefor the job execution. - Throws:
RuntimeException- if the given job is null.
-