Skip to content

Instantly share code, notes, and snippets.

@ybonnel
Created May 26, 2014 13:12
Show Gist options
  • Save ybonnel/39b3e53dd3d914fab02a to your computer and use it in GitHub Desktop.
Save ybonnel/39b3e53dd3d914fab02a to your computer and use it in GitHub Desktop.
ScheduledExecutorService scheduler = Executors.newSingleThreadScheduledExecutor();
scheduler.scheduleAtFixedRate(
() -> System.out.println(LocalTime.now().toString()),
0, 1, TimeUnit.SECONDS);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment