import io.timely.Timely; public class SchedulerExample { public static void main(String[] args) { Timely scheduler = new Timely(); try { Thread.sleep(5000); scheduler.shutdown(); } catch (InterruptedException e) { e.printStackTrace(); } } }