Uses of Class
org.ourgrid.mygrid.scheduler.jobmanager.JobEntry

Packages that use JobEntry
org.ourgrid.mygrid.scheduler   
org.ourgrid.mygrid.scheduler.event   
org.ourgrid.mygrid.scheduler.jobmanager   
org.ourgrid.mygrid.ui   
org.ourgrid.mygrid.ui.gui   
org.ourgrid.mygrid.ui.gui.event   
org.ourgrid.mygrid.ui.test   
 

Uses of JobEntry in org.ourgrid.mygrid.scheduler
 

Methods in org.ourgrid.mygrid.scheduler that return types with arguments of type JobEntry
 java.util.Collection<JobEntry> SchedulerImpl.jobList(JobManagerListenerRemote newListener)
           
 java.util.Collection<JobEntry> Scheduler.jobList(JobManagerListenerRemote newListener)
          Gives access to the list of jobs on the scheduler.
 EventQueue<ResponseEvent<java.util.Collection<JobEntry>>> EBSchedulerFacade.jobList(JobManagerListenerRemote newListener)
          Provides the list of Jobs.
 

Methods in org.ourgrid.mygrid.scheduler with parameters of type JobEntry
 void JobMonitor.jobFinished(JobEntry job)
          Notifies who is waiting for the Job.
 void JobInterested.jobFinished(JobEntry job)
          Notifies that a job is finished.
 

Uses of JobEntry in org.ourgrid.mygrid.scheduler.event
 

Constructor parameters in org.ourgrid.mygrid.scheduler.event with type arguments of type JobEntry
JobListRequestEvent(JobManager jobManager, JobManagerListenerRemote newListener, EventQueue<ResponseEvent<java.util.Collection<JobEntry>>> responseQueue)
           
 

Uses of JobEntry in org.ourgrid.mygrid.scheduler.jobmanager
 

Fields in org.ourgrid.mygrid.scheduler.jobmanager with type parameters of type JobEntry
protected  java.util.Map<java.lang.Integer,JobEntry> EBJobManager.jobs
           
 

Methods in org.ourgrid.mygrid.scheduler.jobmanager that return JobEntry
protected  JobEntry EBJobManager.createJobEntry(int jobId, JobSpec jobSpec, int maxReplicas, int maxFails)
           
 JobEntry JobManager.getJobById(int jobId)
           
 JobEntry EBJobManager.getJobById(int jobId)
          Returns a Job with the specified identification.
 

Methods in org.ourgrid.mygrid.scheduler.jobmanager that return types with arguments of type JobEntry
 java.util.Collection<JobEntry> JobManager.clonedJobList()
           
 java.util.Collection<JobEntry> EBJobManager.clonedJobList()
          Returns a clone of the Job list.
 java.util.Collection<JobEntry> JobManager.jobList()
          Returns the Job list.
 java.util.Collection<JobEntry> EBJobManager.jobList()
          Returns the Job list.
 

Methods in org.ourgrid.mygrid.scheduler.jobmanager with parameters of type JobEntry
protected  void EBJobManager.addNewJob(int jobId, JobEntry newJob)
           
 void JobManagerListenerRemote.jobCreated(JobEntry jobEntry)
           
 

Method parameters in org.ourgrid.mygrid.scheduler.jobmanager with type arguments of type JobEntry
protected  void EBJobManager.setJobList(java.util.Map<java.lang.Integer,JobEntry> newJobList)
           
 

Uses of JobEntry in org.ourgrid.mygrid.ui
 

Methods in org.ourgrid.mygrid.ui that return types with arguments of type JobEntry
 java.util.Collection<JobEntry> UIManager.getJobs(JobManagerListenerRemote newListener)
          Obtains a collection with the jobs that are currently added to Mygrid, no matter the jobs states.
 java.util.Collection<JobEntry> MyGridUIManager.getJobs(JobManagerListenerRemote newListener)
           
 

Uses of JobEntry in org.ourgrid.mygrid.ui.gui
 

Methods in org.ourgrid.mygrid.ui.gui with parameters of type JobEntry
 void SimpleSynchronizedJobManager.jobCreated(JobEntry jobEntry)
           
 void JobManagerListener.jobCreated(JobEntry jobEntry)
           
 void GUIListenerImpl.jobCreated(JobEntry jobEntry)
           
 void EBGuiFacade.jobCreated(JobEntry jobEntry)
           
 

Method parameters in org.ourgrid.mygrid.ui.gui with type arguments of type JobEntry
 void SimpleSynchronizedJobManager.createEntries(java.util.Collection<JobEntry> jobEntries)
           
 

Constructors in org.ourgrid.mygrid.ui.gui with parameters of type JobEntry
SimpleJobEntry(JobEntry jobEntry)
           
 

Uses of JobEntry in org.ourgrid.mygrid.ui.gui.event
 

Constructors in org.ourgrid.mygrid.ui.gui.event with parameters of type JobEntry
GuiJobStateChangedNotifyEvent(JobEntry jobEntry, SimpleSynchronizedJobManager manager)
           
 

Uses of JobEntry in org.ourgrid.mygrid.ui.test
 

Subclasses of JobEntry in org.ourgrid.mygrid.ui.test
 class FakeScheduler.FakeJob
           
 

Methods in org.ourgrid.mygrid.ui.test that return types with arguments of type JobEntry
 java.util.Collection<JobEntry> FakeScheduler.jobList(JobManagerListenerRemote newListener)
           
 

Method parameters in org.ourgrid.mygrid.ui.test with type arguments of type JobEntry
 void FakeScheduler.setJobList(java.util.Map<java.lang.Integer,JobEntry> c)