Package cn.edu.zju.acm.onlinejudge.judgeservice

Examples of cn.edu.zju.acm.onlinejudge.judgeservice.JudgingQueueIterator


        SubmissionCacheEntry entry;
        synchronized (this.submissionCache) {
            entry = this.submissionCache.get(key);
            if (entry == null) {
                JudgingQueueIterator iter = JudgeService.getInstance().getJudgingQueueIterator();
                List<Submission> submissions =
                        PersistenceManager.getInstance().getSubmissionPersistence().searchSubmissions(criteria,
                                                                                                      firstId, lastId,
                                                                                                      count);
                entry = new SubmissionCacheEntry(iter, submissions);
View Full Code Here

TOP

Related Classes of cn.edu.zju.acm.onlinejudge.judgeservice.JudgingQueueIterator

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.