MCPcopy Create free account
hub / github.com/boxbeam/RedLib / asyncRepeating

Method asyncRepeating

src/redempt/redlib/misc/Task.java:256–258  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

getCallingPluginMethod · 0.95

Tested by

no test coverage detected