Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ezhov-da/0bb79bd0347780c7483b330946f84583 to your computer and use it in GitHub Desktop.
Save ezhov-da/0bb79bd0347780c7483b330946f84583 to your computer and use it in GitHub Desktop.
выполнение через интервалы
ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor();
executor.scheduleAtFixedRate(() -> {
//Runnable
}, 0, 1, TimeUnit.MINUTES);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment