コード例 #1
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()
コード例 #2
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()
コード例 #3
0
 def __init__(self, queue):
     QueueProcessingThread.__init__(self, "Outgoing data processing thread",
                                    queue)
コード例 #4
0
 def __init__(self, queue):
     QueueProcessingThread.__init__(self, "Outgoing data processing thread", queue)