📄 counter.java
字号:
/* * $Id: Counter.java 8077 2007-08-27 20:15:25Z aperepel $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.util.counters;/** * This interface is the interface implemented for all counter types. A Counter can * represent a real counter or a virtual counter that will be computed using one or * more other counters.<br/> * <h3>Real counters</h3> * are counters which represent real values. The user will call methods of such * counters to modify the associated value of the counter. * <h3>Computed counters</h3> * are computed using one or more associated counters. Such counters represent * operations computed on associated counters. Usually, these counters will never be * used directly, but will only used to retrieve the computed values. */public interface Counter{ /** * Accessor for the counter type. * * @return the type of the counter */ CounterFactory.Type getType(); /** * Accessor for the counter's name. * * @return the name of the counter */ String getName(); /** * Increment the counter's value by 1.0. * * @return the new value of the counter */ double increment(); /** * Increment the counter's value by the specified amount. * * @param value the amount to increment the counter by * @return the new value of the counter */ double incrementBy(double value); /** * Decrement the counter's value by 1.0. * * @return the new value of the counter */ double decrement(); /** * Set the counter's value to a new value. * * @param value the new value of the counter */ void setRawValue(double value); /** * Compute and return the value of the counter. * * @return the value of the counter */ double nextValue();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -