Uses of Interface
gnu.hylafax.Job

Packages that use Job
gnu.hylafax   
gnu.hylafax.job   
gnu.hylafax.pool   
 

Uses of Job in gnu.hylafax
 

Methods in gnu.hylafax that return Job
 Job Client.createJob()
          create a new job in the server
 Job Client.getJob(long id)
          get a Job instance for the given job id
 Job HylaFAXClient.createJob()
          create a new job in the server
 Job HylaFAXClient.getJob(long id)
          get a Job instance for the given job id
 

Methods in gnu.hylafax with parameters of type Job
 void Client.delete(Job job)
          delete the given done or suspended job
 void Client.interrupt(Job job)
          interrupt the given job
 void Client.kill(Job job)
          kill the given job
 void Client.submit(Job job)
          submit the given job to the scheduler
 void Client.suspend(Job job)
          suspend the given job from the scheduler
 void Client.wait(Job job)
          wait for the given job to complete
 void HylaFAXClient.submit(Job job)
          submit the given job to the scheduler
 void HylaFAXClient.delete(Job job)
          delete the given done or suspended job
 void HylaFAXClient.suspend(Job job)
          suspend the given job from the scheduler
 void HylaFAXClient.wait(Job job)
          wait for the given job to complete
 void HylaFAXClient.kill(Job job)
          kill the given job
 void HylaFAXClient.interrupt(Job job)
          interrupt the given job
 

Uses of Job in gnu.hylafax.job
 

Classes in gnu.hylafax.job that implement Job
 class Job
          This class is a light, unsynchronized implementation of gnu.hylafax.Job.
 class ThreadSafeJob
          This is a thread-safe implementation of the gnu.hylafax.Job interface.
 

Uses of Job in gnu.hylafax.pool
 

Methods in gnu.hylafax.pool that return Job
 Job HylaFAXPooledClient.createJob()
           
 Job HylaFAXPooledClient.getJob(long id)
           
 

Methods in gnu.hylafax.pool with parameters of type Job
 void HylaFAXPooledClient.delete(Job job)
           
 void HylaFAXPooledClient.interrupt(Job job)
           
 void HylaFAXPooledClient.kill(Job job)
           
 void HylaFAXPooledClient.submit(Job job)
           
 void HylaFAXPooledClient.suspend(Job job)
           
 void HylaFAXPooledClient.wait(Job job)