src/java.base/share/classes/java/util/concurrent/ScheduledExecutorService.java
changeset 54685 e1bec7613945
parent 47216 71c04702a3d5
equal deleted inserted replaced
54684:c277ec29ee12 54685:e1bec7613945
    63  * protocols, clock drift, or other factors.
    63  * protocols, clock drift, or other factors.
    64  *
    64  *
    65  * <p>The {@link Executors} class provides convenient factory methods for
    65  * <p>The {@link Executors} class provides convenient factory methods for
    66  * the ScheduledExecutorService implementations provided in this package.
    66  * the ScheduledExecutorService implementations provided in this package.
    67  *
    67  *
    68  * <h3>Usage Example</h3>
    68  * <h2>Usage Example</h2>
    69  *
    69  *
    70  * Here is a class with a method that sets up a ScheduledExecutorService
    70  * Here is a class with a method that sets up a ScheduledExecutorService
    71  * to beep every ten seconds for an hour:
    71  * to beep every ten seconds for an hour:
    72  *
    72  *
    73  * <pre> {@code
    73  * <pre> {@code