Package bg.smoc.agent

Examples of bg.smoc.agent.GraderAgent


        }
    }

    @Override
    protected void makeNewProduct(Socket socket) {
        new GraderAgent(this, mediator.getContestManager(), socket);
    }
View Full Code Here


    public GraderAgent moveMachineToBusy() {
        synchronized (this) {
            if (idleMachineQueue.isEmpty())
                return null;
            GraderAgent gm = idleMachineQueue.remove(0);
            busyMachineQueue.add(gm);
            return gm;
        }
    }
View Full Code Here

TOP

Related Classes of bg.smoc.agent.GraderAgent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.