});
}
public static void main1(String[] args) throws InterruptedException {
new TimerWheelExample().test();
TimeProvider t = new TimeProvider(1000L);
t.start();
Thread.sleep(1000L);
long start = t.currentTimeMillis();
Thread.sleep(5000L);
System.out.println("TimeProvider: " + (t.currentTimeMillis() - start));
}