Self-Incremental Counters
Solution
def test1():
cm = counterManager()
cm.setPath( "./test" )
if cm.setup() is True:
print( "INFO: setup Counter Manager" )
print( "INFO: attempting to call getNextValue for: testA ..." )
tmp = cm.getNextValue( "testA" )
print( "INFO: getNextValue returned:" + str(tmp) )
else:
print( "ERROR: Failed to setup Counter Manager" )User Interaction
Assumptions and Notes
Attachments
Last updated
Was this helpful?