StatisticsIncLong Method (String, Int64) |
Increments the value of the statistic of type long 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 long IncLong(
string name,
long delta
)
Public Function IncLong (
name As String,
delta As Long
) As Long
public:
virtual long long IncLong(
String^ name,
long long delta
) sealed
abstract IncLong :
name : string *
delta : int64 -> int64
override IncLong :
name : string *
delta : int64 -> int64
Parameters
- name
- Type: SystemString
statistic name - delta
- Type: SystemInt64
change value to be added
Return Value
Type:
Int64the 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 long.
|
See Also