All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.neo4j.internal.helpers.DefaultIntervalStrategy Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) "Neo4j"
 * Neo4j Sweden AB [https://neo4j.com]
 *
 * This file is part of Neo4j.
 *
 * Neo4j is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package org.neo4j.internal.helpers;

import java.util.concurrent.TimeUnit;
import java.util.function.Function;

public class DefaultIntervalStrategy implements IntervalStrategy {
    public static IntervalStrategy exponential(long initialTime, long upperBoundTime, TimeUnit timeUnit) {
        return new DefaultIntervalStrategy(initialTime, upperBoundTime, timeUnit, i -> i * 2);
    }

    public static IntervalStrategy constant(long initialTime, TimeUnit timeUnit) {
        return new DefaultIntervalStrategy(initialTime, initialTime, timeUnit, i -> i);
    }

    public static IntervalStrategy incremental(
            long initialTime, long upperBoundTime, long deltaTime, TimeUnit timeUnit) {
        return new DefaultIntervalStrategy(initialTime, upperBoundTime, timeUnit, i -> i + deltaTime);
    }

    private final Function increasingFunction;
    private final long startTimeMillis;
    private final long upperBoundTime;

    public DefaultIntervalStrategy(
            long initialTime, long upperBoundTime, TimeUnit timeUnit, Function increasingFunction) {
        if (initialTime > increasingFunction.apply(initialTime)) {
            throw new IllegalArgumentException("passed function can't decrease");
        }
        if (initialTime < 0) {
            throw new IllegalArgumentException("initial time can't be less than zero");
        }
        this.startTimeMillis = timeUnit.toMillis(initialTime);
        this.increasingFunction = increasingFunction;
        this.upperBoundTime = timeUnit.toMillis(upperBoundTime);
    }

    @Override
    public IntervalProvider newIntervalProvider() {
        return new IntervalProvider() {
            private long currentTimeMillis = startTimeMillis;

            @Override
            public long getMillis() {
                return currentTimeMillis;
            }

            @Override
            public void increment() {
                currentTimeMillis = Math.min(upperBoundTime, increasingFunction.apply(currentTimeMillis));
            }
        };
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy