Schedules a sync delayed task to run as soon as possible @param run The task to run @return The Task that has been scheduled
(Runnable run)
| 20 | * @return The Task that has been scheduled |
| 21 | */ |
| 22 | public static Task syncDelayed(Runnable run) { |
| 23 | return syncDelayed(RedLib.getCallingPlugin(), run); |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Schedules a sync delayed task to run as soon as possible |
no test coverage detected