Schedules an async repeating task to run later @param run The task to run @param delay The delay in ticks to wait before running the task @param period The number of ticks between executions of the task @return The Task that has been scheduled
(Consumer<Task> run, long delay, long period)
| 254 | * @return The Task that has been scheduled |
| 255 | */ |
| 256 | public static Task asyncRepeating(Consumer<Task> run, long delay, long period) { |
| 257 | return asyncRepeating(RedLib.getCallingPlugin(), run, delay, period); |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * Schedules an async repeating task to run later |
nothing calls this directly
no test coverage detected