aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/core/SystemTimer.java
blob: faf85f76a275b964351f7a5e1147eb5583813325 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.core;

import com.yahoo.jdisc.Timer;

import java.time.Instant;

/**
 * A timer which returns the System time
 *
 * @author Simon Thoresen Hult
 */
public class SystemTimer implements Timer {

    @Override
    public long currentTimeMillis() {
        return System.currentTimeMillis();
    }

    @Override
    public Instant currentTime() {
        return Instant.now();
    }
}