Klasse SequencerMediator
java.lang.Object
ch.nolix.core.programcontrol.sequencer.SequencerMediator
- Version:
- 2020-08-15
- Autor:
- Silvan Wyss
-
Konstruktorübersicht
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungasLongAs
(BooleanSupplier condition) asSoonAs
(BooleanSupplier condition) asSoonAsNoMore
(BooleanSupplier condition) Enqueues the given job.forCount
(int maxRunCount) forMaxMilliseconds
(int maxDurationInMilliseconds) forMaxSeconds
(int maxDurationInSeconds) runInBackground
(Runnable job) Runs the given job in background.<R> ResultFuture
<R> runInBackground
(Supplier<R> resultJob) Runs the given result job in background.until
(BooleanSupplier condition) void
waitAsLongAs
(BooleanSupplier condition) Waits as long as the given condition is fulfilled.void
waitForMilliseconds
(int durationInMilliseconds) Waits for the given durationInMilliseconds.void
waitForSeconds
(int durationInSeconds) Waits for the given durationInSeconds.void
waitUntil
(BooleanSupplier condition) Waits until the given condition is fulfilled.
-
Konstruktordetails
-
SequencerMediator
public SequencerMediator()
-
-
Methodendetails
-
asLongAs
- Parameter:
condition
-- Gibt zurück:
- a new
AsLongAsMediator
with the given condition. - Löst aus:
ArgumentIsNullException
- if the given condition is null.
-
asSoonAs
- Parameter:
condition
-- Gibt zurück:
- a new
AsSoonAsMediator
with the given condition. - Löst aus:
ArgumentIsNullException
- if the given condition is null.
-
asSoonAsNoMore
- Parameter:
condition
-- Gibt zurück:
- a new
AsSoonAsMediator
with the negation of the given condition. - Löst aus:
ArgumentIsNullException
- if the given condition is null.
-
enqueue
Enqueues the given job.- Parameter:
job
-- Gibt zurück:
- a
IFuture
for the given job. - Löst aus:
ArgumentIsNullException
- if the given job is null.
-
forCount
- Parameter:
maxRunCount
-- Gibt zurück:
- a new
ForCountMediator
with the given max run count. - Löst aus:
NegativeArgumentException
- if the given max run count is negative.
-
forMaxMilliseconds
- Parameter:
maxDurationInMilliseconds
-- Gibt zurück:
- a new
ForMaxMillisecondsMediator
for the given maxDurationInMilliseconds. - Löst aus:
NegativeArgumentException
- if the given maxDurationInMilliseconds is negative.
-
forMaxSeconds
- Parameter:
maxDurationInSeconds
-- Gibt zurück:
- a new
ForMaxMillisecondsMediator
for the given maxDurationInSeconds. - Löst aus:
NegativeArgumentException
- if the given maxDurationInSeconds is negative.
-
runInBackground
Runs the given job in background.- Parameter:
job
-- Gibt zurück:
- a new
Future
. - Löst aus:
ArgumentIsNullException
- if the given job is null.
-
runInBackground
Runs the given result job in background. A result job is a job that returns a result.- Typparameter:
R
- is the type of the result the given resultJob returns.- Parameter:
resultJob
-- Gibt zurück:
- a new
ResultFuture
. - Löst aus:
ArgumentIsNullException
- if the given result job is null.
-
until
- Parameter:
condition
-- Gibt zurück:
- a new
AsLongAsMediator
for the negation of the given condition. - Löst aus:
ArgumentIsNullException
- if the given condition is null.
-
waitAsLongAs
Waits as long as the given condition is fulfilled.- Parameter:
condition
-- Löst aus:
ArgumentIsNullException
- if the given condition is null.
-
waitForMilliseconds
public void waitForMilliseconds(int durationInMilliseconds) Waits for the given durationInMilliseconds.- Parameter:
durationInMilliseconds
-- Löst aus:
NegativeArgumentException
- if the given durationInMilliseconds is negative.
-
waitForSeconds
public void waitForSeconds(int durationInSeconds) Waits for the given durationInSeconds.- Parameter:
durationInSeconds
-- Löst aus:
NegativeArgumentException
- if the given durationInSeconds is negative.
-
waitUntil
Waits until the given condition is fulfilled.- Parameter:
condition
-- Löst aus:
ArgumentIsNullException
- if the given condition is null.
-