// Launch worker threads
for(int threadNb = 0;threadNb < 5; threadNb++) {
new WorkerThread(context).start();
}
// Connect work threads to client threads via a queue
ZMQQueue queue = new ZMQQueue(context, clients, workers);
new Thread(queue).start();
}