java.lang.Object
net.botwithus.rs3.script.Execution
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
delay
(long time) Delays the scripting thread for x amount of timestatic boolean
delayExt
(ScriptDelay delay) static boolean
delayUntil
(long timeout, Callable<Boolean> predicate) Delays the current thread for a timeout or until the predicate is met.static boolean
delayUntil
(Callable<Boolean> predicate, Callable<Boolean> continuation, long timeout) static boolean
delayUntil
(Predicate<LocalPlayer> predicate, long timeout, TimeUnit unit) static boolean
delayWhile
(long timeout, Callable<Boolean> predicate) Delays the current thread for a timeout or until the predicate is met.
-
Method Details
-
delayExt
-
delayUntil
-
delayUntil
-
delay
public static boolean delay(long time) Delays the scripting thread for x amount of time- Parameters:
time
- The time in milliseconds
-
delayUntil
Delays the current thread for a timeout or until the predicate is met.- Parameters:
timeout
- The timeoutpredicate
- The predicate
-
delayWhile
Delays the current thread for a timeout or until the predicate is met.- Parameters:
timeout
- The timeoutpredicate
- The predicate
-