summaryrefslogtreecommitdiffstats
path: root/messagebus/src/test/java/com/yahoo/messagebus/CustomTimer.java
blob: 08b68f79cb0a6ecfd04e5c14a3ed4a775692f17c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.messagebus;

import com.yahoo.concurrent.Timer;

/**
 * @author <a href="mailto:thomasg@yahoo-inc.com">Thomas Gundersen</a>
 */
class CustomTimer implements Timer {

    long millis = 0;

    @Override
    public long milliTime() {
        return millis;
    }
}