// Copyright 2017 Yahoo Holdings. 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; /** * A timer which returns the System time * * @author Simon Thoresen */ public class SystemTimer implements Timer { @Override public long currentTimeMillis() { return System.currentTimeMillis(); } }