public static void tryCleanup()

in java/main/src/main/java/com/epam/deltix/utilities/FileJanitor.java [192:203]


    public static void tryCleanup() {
        synchronized (_cleanupLock) {
            final List<CleanupPath> deleted = new ArrayList<>();

            for (final CleanupPath p : _cleanupDirs)
                if (p.tryCleanup())
                    deleted.add(p);

            for (final CleanupPath p : deleted)
                _cleanupDirs.remove(p);
        }
    }