You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
451 B
Python
11 lines
451 B
Python
7 years ago
|
import Queue
|
||
|
from class_objectProcessorQueue import ObjectProcessorQueue
|
||
|
|
||
|
workerQueue = Queue.Queue()
|
||
|
UISignalQueue = Queue.Queue()
|
||
|
addressGeneratorQueue = Queue.Queue()
|
||
|
# receiveDataThreads dump objects they hear on the network into this queue to be processed.
|
||
|
objectProcessorQueue = ObjectProcessorQueue()
|
||
|
apiAddressGeneratorReturnQueue = Queue.Queue(
|
||
|
) # The address generator thread uses this queue to get information back to the API thread.
|