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

Method syncRepeating

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

Schedules a sync 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

(Runnable run, long delay, long period)

Source from the content-addressed store, hash-verified

112 * @return The Task that has been scheduled
113 */
114 public static Task syncRepeating(Runnable run, long delay, long period) {
115 return syncRepeating(RedLib.getCallingPlugin(), run, delay, period);
116 }
117
118 /**
119 * Schedules a sync repeating task to run later

Callers 4

registerMethod · 0.95
registerMethod · 0.95
setCommitIntervalMethod · 0.95
startMethod · 0.95

Calls 1

getCallingPluginMethod · 0.95

Tested by

no test coverage detected