Пример #1
0
 def __init__(self):
     """
     Initializes the manager's state
     Args:
         None
     """
     self.__backgroundProcesses = GenericThreadSafeList()
     self.__thread = BackgroundProcessesPollingThread(self.__backgroundProcesses)
     self.__thread.start()
Пример #2
0
 def __init__(self):
     self.__backgroundProcesses = GenericThreadSafeList()
     self.__thread = BackgroundProcessesPollingThread(
         self.__backgroundProcesses)
     self.__thread.start()