StatisticsIncDouble Method (String, Double) |
Increments the value of the statistic of type double with
the given name by a given amount.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic double IncDouble(
string name,
double delta
)
Public Function IncDouble (
name As String,
delta As Double
) As Double
public:
virtual double IncDouble(
String^ name,
double delta
) sealed
abstract IncDouble :
name : string *
delta : float -> float
override IncDouble :
name : string *
delta : float -> float
Parameters
- name
- Type: SystemString
statistic name - delta
- Type: SystemDouble
change value to be added
Return Value
Type:
Doublethe value of the statistic after it has been incremented
ExceptionsException | Condition |
---|
IllegalArgumentException |
If no statistic exists named name or
if the statistic with name name is not of
type double.
|
See Also