Schedules an async delayed task to run as soon as possible @param run The task to run @return The Task that has been scheduled
(Runnable run)
| 162 | * @return The Task that has been scheduled |
| 163 | */ |
| 164 | public static Task asyncDelayed(Runnable run) { |
| 165 | return asyncDelayed(RedLib.getCallingPlugin(), run); |
| 166 | } |
| 167 | |
| 168 | /** |
| 169 | * Schedules an async delayed task to run as soon as possible |
nothing calls this directly
no test coverage detected