/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package netzprog02_j_ultimatefinal;

/**
 *
 * @author Daniel Leese
 */
public class MainGateway {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        Thread clients = null;
        Thread workers = null;

        clients = new Thread(new WaitForClient());
        workers = new Thread(new WaitForWorker());
        clients.start();
        workers.start();
    }
}