aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/Timer.java
blob: 113a44f111b2b5132f9e10a739ede2e3f17ce60e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core;

/**
 * Interface used to get time. This is separated into its own class, such that unit tests can fake timing to do timing related
 * tests without relying on the speed of the unit test processing.
 */
public interface Timer {

    long getCurrentTimeInMillis();

}