private void sleep()

in src/main/java/org/apache/sling/distribution/journal/impl/publisher/DistributionPublisher.java [230:240]


    private void sleep(long sleepMs) throws DistributionException {
        if (sleepMs <= 0) {
            return;
        }
        try {
            Thread.sleep(sleepMs);
        } catch (InterruptedException e) {
            Thread.currentThread().interrupt();
            throw new DistributionException("Interrupted");
        }
    }