NumberIncrementor Constructor (String, Object, Boolean) |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Construct an NumberIncrementor processor that will
increment a property value by a specified amount, returning
either the old or the new value as specified.
Namespace:
Tangosol.Util.Processor
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntaxpublic NumberIncrementor(
string name,
Object numInc,
bool postIncrement
)
Parameters
- name
- Type: SystemString
The property name.
- numInc
- Type: SystemObject
The object representing the magnitude and sign of the increment.
- postIncrement
- Type: SystemBoolean
Pass true to return the value as it was before it was
incremented, or pass false to return the value as it is
after it is incremented.
Remarks
The .NET type of the numInc parameter will
dictate the .NET type of the original and the new value.
See Also