NumberIncrementor Constructor (String, Object, Boolean) | 
.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
 
            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.1 (14.1.1.1)
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