pyqldb.util.atomic_integer.AtomicInteger(value=0)[source]¶An integer value that may be updated atomically.
decrement()[source]¶Atomically decrements the current value by one.
int
The updated integer value.
increment()[source]¶Atomically increments the current value by one.
int
The updated integer value.
value¶Returns the current value.
int
The integer value.