1
0
Fork 0
mirror of https://github.com/correl/SleekXMPP.git synced 2025-03-22 19:04:29 -09:00

added function to retrieve the current state

This commit is contained in:
Thom Nichols 2010-06-03 08:07:56 -04:00
parent 1c32668e18
commit 2f0f18a8c6

View file

@ -112,6 +112,13 @@ class StateMachine(object):
self.transition(self.__current_state, self._default_state)
def current_state(self):
'''
Return the current state name.
'''
return self.__current_state
def __getitem__(self, state):
'''
Non-blocking, non-synchronized test to determine if we are in the given state.