コード例 #1
0
 def start(self):
     """
     Starts the thread
     Args:
         None
     Returns:
         Nothing
     """
     self.__referenceCounter.increment()
     if (self.__referenceCounter.read() == 1) :
         QueueProcessingThread.start(self)
コード例 #2
0
 def start(self):
     """
     Starts the thread
     Args:
         None
     Returns:
         Nothing
     """
     self.__referenceCounter.increment()
     if (self.__referenceCounter.read() == 1):
         QueueProcessingThread.start(self)
コード例 #3
0
 def __init__(self, queue, callbackObject):
     """
     Initializes the thread's state
     Args:
         queue: The incoming packages queue 
         callbackObject: The callback object that will process
         all the received packets.
     """
     QueueProcessingThread.__init__(self, "Incoming data processing thread", queue)   
     self.__callbackObject = callbackObject     
     self.__referenceCounter = MultithreadingCounter()
コード例 #4
0
 def __init__(self, queue, callbackObject):
     """
     Initializes the thread's state
     Args:
         queue: The incoming packages queue 
         callbackObject: The callback object that will process
         all the received packets.
     """
     QueueProcessingThread.__init__(self, "Incoming data processing thread",
                                    queue)
     self.__callbackObject = callbackObject
     self.__referenceCounter = MultithreadingCounter()
コード例 #5
0
 def stop(self, join):
     """
     Asks this thread to terminate.
     Args:
         join: When True, the calling thread will wait the incoming data thread
         to terminate. When False, the calling thread will only ask this thread to terminate.
     Returns: 
         Nothing
     """
     self.__referenceCounter.decrement()
     if self.__referenceCounter.read() == 0:
         QueueProcessingThread.stop(self)
         if join:
             self.join()
コード例 #6
0
 def stop(self, join):
     """
     Asks this thread to terminate.
     Args:
         join: When True, the calling thread will wait the incoming data thread
         to terminate. When False, the calling thread will only ask this thread to terminate.
     Returns: 
         Nothing
     """
     self.__referenceCounter.decrement()
     if self.__referenceCounter.read() == 0 :
         QueueProcessingThread.stop(self)
         if join :
             self.join()
コード例 #7
0
 def __init__(self, queue):
     QueueProcessingThread.__init__(self, "Outgoing data processing thread",
                                    queue)
コード例 #8
0
 def run(self):
     QueueProcessingThread.run(self)
コード例 #9
0
 def __init__(self, queue):
     QueueProcessingThread.__init__(self, "Outgoing data processing thread", queue)
コード例 #10
0
 def run(self):
     QueueProcessingThread.run(self)