T - the end implementation of DefaultWaiting as the return type for setter methodspublic abstract class DefaultWaiting<T extends Waiting<T>> extends Object implements Waiting<T>, Cloneable
| Constructor and Description |
|---|
DefaultWaiting() |
| Modifier and Type | Method and Description |
|---|---|
T |
dontFail()
Sets no failure after waiting timeout.
|
protected void |
fail()
Tries to fail by throwing 'failure' throwable.
|
T |
failWith(CharSequence failureMessage,
Object... arguments)
Returns preset instance of waiting with given failure message parametrized by given objects.
|
T |
failWith(Exception exception)
Returns Waiting object initialized with given exception.
|
protected long |
getInterval()
Returns the interval set for this object.
|
protected long |
getTimeout()
Returns the timeout set for this object.
|
T |
interval(long interval)
Returns instance of waiting with same properties like this object and interval set to given interval.
|
protected boolean |
isDelayed()
Returns if this waiting's start is delayed.
|
T |
noDelay()
Sets no delay between start of waiting and first test for conditions.
|
T |
timeout(long timeout)
Returns instance of waiting with same properties like this object and timeout set to given timeout.
|
void |
waitForTimeout()
Waits for predefined amount of time (see
Waiting.timeout(long)). |
T |
withDelay(boolean isDelayed)
Set if testing condition should be delayed of one interval after the start of waiting.
|
protected long getInterval()
protected long getTimeout()
protected boolean isDelayed()
public T interval(long interval)
Waitingpublic T timeout(long timeout)
Waitingpublic T failWith(Exception exception)
WaitingReturns Waiting object initialized with given exception.
If the exception is instance of RuntimeException, it will be thrown in case of waiting timed out.
If the exception isn't instance of RuntimeException, the WaitingTimeoutException will be thrown with cause preset to the given Throwable.
If failure is set to null, timeout will not result to failure!
failWith in interface Waiting<T extends Waiting<T>>exception - the instance of RuntimeException to be thrown or any other Exception when the WaitTimeoutException
should be thrown with this exception as causepublic T failWith(CharSequence failureMessage, Object... arguments)
WaitingReturns preset instance of waiting with given failure message parametrized by given objects.
To parametrize failure message, the
SimplifiedFormat.format(String, Object...) will be used.
If failure is set to null, timeout will not result to failure!
failWith in interface Waiting<T extends Waiting<T>>failureMessage - character sequence that will be used as message of exception thrown in case of waiting timeout or
null if waiting timeout shouldn't result to failurearguments - arguments to failureMessage which will be use in parametrization of failureMessagepublic T dontFail()
Waitingpublic T noDelay()
Waitingpublic T withDelay(boolean isDelayed)
WaitingSet if testing condition should be delayed of one interval after the start of waiting.
The length of delay is one interval (see Waiting.interval(long)).
public void waitForTimeout()
WaitingWaiting.timeout(long)).waitForTimeout in interface Waiting<T extends Waiting<T>>protected void fail()
Copyright © 2013 JBoss by Red Hat. All Rights Reserved.