3387eca0e635dc6fe2e870cb419f117e2c67b04e
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / common / actor / TestTicker.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.common.actor;
9
10 import com.google.common.base.Ticker;
11
12 /**
13  * Utility {@link Ticker} where passage of time is explicitly controlled via {@link #increment(long)}.
14  *
15  * @author Robert Varga
16  */
17 public final class TestTicker extends Ticker {
18     private long counter = 0;
19
20     @Override
21     public long read() {
22         return counter;
23     }
24
25     public long increment(final long ticks) {
26         counter += ticks;
27         return counter;
28     }
29 }