BUG-4158: introduce ImmutableOffsetMap
[yangtools.git] / common / util / src / main / java / org / opendaylight / yangtools / util / DurationStatsTracker.java
1 /*
2  * Copyright (c) 2014 Brocade Communications 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.yangtools.util;
9
10 /**
11  * Class that calculates and tracks time duration statistics.
12  *
13  * @author Thomas Pantelis
14  * @author Robert Varga
15  *
16  * @deprecated Use {@link DurationStatisticsTracker} instead.
17  */
18 @Deprecated
19 public class DurationStatsTracker extends ConcurrentDurationStatisticsTracker {
20     /**
21      * @deprecated Use {@link DurationStatisticsTracker#createConcurrent()} instead.
22      */
23     @Deprecated
24     public DurationStatsTracker() {
25
26     }
27
28     // Remove once the no-argument constructor is removed
29     DurationStatsTracker(final Void dummy) {
30
31     }
32 }