com.ibm.wsspi.pmi.stat
Interface SPIDoubleStatistic

All Superinterfaces:
SPIStatistic, WSDoubleStatistic, WSStatistic

public interface SPIDoubleStatistic
extends SPIStatistic, WSDoubleStatistic

WebSphere interface to instrument a Double statistic.


Method Summary
 void decrement()
          Decrement the statistic by 1
 void decrement(double val)
          Decrement the statistic by the input value
 void increment()
          Increment the statistic by 1
 void increment(double val)
          Increment the statistic by the input value
 void set(double count, long startTime, long lastSampleTime)
          Set the Double statistic with following values
 void setDouble(double value)
          Set the double value
 
Methods inherited from interface com.ibm.wsspi.pmi.stat.SPIStatistic
isEnabled, reset, setLastSampleTime, setStartTime
 
Methods inherited from interface com.ibm.websphere.pmi.stat.WSStatistic
combine, copy, delta, getDataInfo, getDescription, getId, getLastSampleTime, getName, getStartTime, getUnit, rateOfChange, resetOnClient, setDataInfo, setDataInfo, toString, toXML, update
 
Methods inherited from interface com.ibm.websphere.pmi.stat.WSDoubleStatistic
getDouble
 

Method Detail

set

public void set(double count,
                long startTime,
                long lastSampleTime)
Set the Double statistic with following values


setDouble

public void setDouble(double value)
Set the double value


increment

public void increment()
Increment the statistic by 1


increment

public void increment(double val)
Increment the statistic by the input value


decrement

public void decrement()
Decrement the statistic by 1


decrement

public void decrement(double val)
Decrement the statistic by the input value