Uses of Class
io.github.bakedlibs.dough.scheduling.TaskQueue
Packages that use TaskQueue
-
Uses of TaskQueue in io.github.bakedlibs.dough.scheduling
Methods in io.github.bakedlibs.dough.scheduling that return TaskQueueModifier and TypeMethodDescriptionTaskQueue.thenRepeat(int iterations, Runnable runnable)
This method will schedule the given Task with no delay and synchronously.TaskQueue.thenRepeat(int iterations, IntConsumer consumer)
This method will schedule the given Task with no delay and synchronously.TaskQueue.thenRepeatAsynchronously(int iterations, Runnable runnable)
This method will schedule the given Task with no delay and asynchronously.TaskQueue.thenRepeatAsynchronously(int iterations, IntConsumer consumer)
This method will schedule the given Task with no delay and asynchronously.TaskQueue.thenRepeatEvery(int ticks, int iterations, Runnable runnable)
This method will schedule the given Task with the given delay and synchronously.TaskQueue.thenRepeatEvery(int ticks, int iterations, IntConsumer consumer)
This method will schedule the given Task with the given delay and synchronously.TaskQueue.thenRepeatEveryAsynchronously(int ticks, int iterations, Runnable runnable)
This method will schedule the given Task with the given delay and asynchronously.TaskQueue.thenRepeatEveryAsynchronously(int ticks, int iterations, IntConsumer consumer)
This method will schedule the given Task with the given delay and asynchronously.This method will schedule the given Task with the given delay and synchronously.TaskQueue.thenRun(int ticks, IntConsumer consumer)
This method will schedule the given Task with the given delay and synchronously.This method will schedule the given Task with no delay and synchronously.TaskQueue.thenRun(IntConsumer consumer)
This method will schedule the given Task with no delay and synchronously.TaskQueue.thenRunAsynchronously(int ticks, Runnable runnable)
This method will schedule the given Task with the given delay and synchronously.TaskQueue.thenRunAsynchronously(int ticks, IntConsumer consumer)
This method will schedule the given Task with the given delay and asynchronously.TaskQueue.thenRunAsynchronously(Runnable runnable)
This method will schedule the given Task with no delay and asynchronously.TaskQueue.thenRunAsynchronously(IntConsumer consumer)
This method will schedule the given Task with no delay and asynchronously.TaskQueue.thenWait(int ticks)
This method will make the Queue just do nothing for the given amount of ticks.