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

com.alicp.jetcache.test.support.Tick Maven / Gradle / Ivy

The newest version!
package com.alicp.jetcache.test.support;

/**
 * @author huangli
 */
public class Tick {
    private static final int TICK = Integer.parseInt(System.getProperty("tick", "1"));

    public static int tick(int value) {
        return value * TICK;
    }

    public static long tick(long value) {
        return value * TICK;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy