(long initialDelay, @NotNull Action0 action)
| 350 | } |
| 351 | |
| 352 | public static @NotNull ScheduledFuture<?> scheduleUnsafe(long initialDelay, @NotNull Action0 action) { |
| 353 | return scheduleUnsafe(initialDelay, action, defaultTimeout); |
| 354 | } |
| 355 | |
| 356 | public static @NotNull ScheduledFuture<?> scheduleUnsafe(long initialDelay, @NotNull Action0 action, long timeout) { |
| 357 | return threadPoolScheduled.schedule(() -> { |