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

com.netflix.astyanax.clock.ConstantClock Maven / Gradle / Ivy

There is a newer version: 3.10.2
Show newest version
package com.netflix.astyanax.clock;

import com.netflix.astyanax.Clock;

public class ConstantClock implements Clock {

    private final long timestamp;

    public ConstantClock(long timestamp) {
        this.timestamp = timestamp;
    }

    @Override
    public long getCurrentTime() {
        return timestamp;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy