Package pku.cbi.abcgrid.master.service

Examples of pku.cbi.abcgrid.master.service.App.fragment()


        App app = apps.get(appName);
        int priority = usermgr.getUserPriority(submitter);
        Job j = app.parse(submitter, commands, priority);
        j.setId(atomic_job_id.getAndIncrement());
        //partition this job into tasks
        List<Task> tasks = app.fragment(j);
        JobInfo ji = new JobInfo(j.getId(), j.getSubmitter(),commands);
        for (Task t : tasks)
        {
            ji.add(new TaskInfo(t));
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.