📄 abstractcounter.java
字号:
/* * $Id: AbstractCounter.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.impl;import org.mule.util.counters.Counter;import org.mule.util.counters.CounterFactory.Type;import java.util.ArrayList;import java.util.Collections;import java.util.Iterator;import java.util.List;public abstract class AbstractCounter implements Counter{ private final Type type; private final String name; private final List aggregates; public AbstractCounter(String name, Type type) { super(); this.name = name; this.type = type; this.aggregates = Collections.synchronizedList(new ArrayList()); } public Type getType() { return this.type; } public String getName() { return this.name; } public abstract double increment(); public abstract double incrementBy(double value); public abstract double decrement(); public abstract void setRawValue(double value); public abstract double nextValue(); protected void addAggregate(AggregateCounter counter) { this.aggregates.add(counter); } protected void propagate() { Iterator it = this.aggregates.iterator(); while (it.hasNext()) { AggregateCounter agg = (AggregateCounter) it.next(); agg.compute(); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -