Method SubSat
SubSat(long, long)
Atomically subtracts a value from this counter. The result will not be less than a minimum value.
Declaration
public long SubSat(long value, long min = -9223372036854775808)
Parameters
| Type | Name | Description |
|---|---|---|
| long | value | The value to subtract from this counter. |
| long | min | The minimum which the result will not be less than. |
Returns
| Type | Description |
|---|---|
| long | The original value before the subtract. |