Uses of Class
com.wm.app.tn.delivery.GuaranteedJob

Packages that use GuaranteedJob
com.wm.app.tn.db   
com.wm.app.tn.delivery   
 

Uses of GuaranteedJob in com.wm.app.tn.db
 

Methods in com.wm.app.tn.db that return GuaranteedJob
static GuaranteedJob QueueOperations.dequeueJobWithTaskId(java.lang.String queue, java.lang.String taskId)
          Return the job with given job Id and status of 'QUEUED' on the specified virtual queue.
static GuaranteedJob DeliveryStore.dequeueJobWithTaskId(java.lang.String queue, java.lang.String taskId)
          OTN-11671 Conceptually a job is same as task and these terms are used interchangeably Dequeues the job given by the argument taskId.
static GuaranteedJob QueueOperations.dequeueOldestJob(java.lang.String queue)
          Return the oldest job with status of 'QUEUED' on the specified virtual queue.
static GuaranteedJob DeliveryStore.dequeueOldestJob(java.lang.String queue)
          Dequeues the oldest job on a virtual delivery queue.
static GuaranteedJob[] DeliveryStore.dequeueOldestJobs(java.lang.String queue, int jobCount)
          Dequeues jobCount no.
static GuaranteedJob DeliveryOperations.getAnyJob(java.lang.String jobId, boolean content)
          Returns the associated job
static GuaranteedJob DeliveryStore.getAnyJob(java.lang.String id, boolean content)
          Get any job info from any server.
static GuaranteedJob DeliveryStore.getJob(java.lang.String id, boolean content)
          Get a job on this server.
 

Methods in com.wm.app.tn.db with parameters of type GuaranteedJob
static boolean DeliveryStore.insertJob(GuaranteedJob j)
          Insert a new delivery job into the database.
static boolean DeliveryStore.updateJob(GuaranteedJob j)
          Update a job in the database.
 

Uses of GuaranteedJob in com.wm.app.tn.delivery
 

Subclasses of GuaranteedJob in com.wm.app.tn.delivery
 class DeliveryJob
           A DeliveryJob represents one unit of work for the reliable delivery engine.
 class RoutingJob
           A RoutingJob is used for guaranteed execution of asynch routing services.
 

Methods in com.wm.app.tn.delivery that return GuaranteedJob
 GuaranteedJob JobMgr.getAnyJob(java.lang.String jobId, boolean content)
          Used to get any GuaranteedJob regardless of the server it is on.
 GuaranteedJob JobMgr.getJob(java.lang.String jobId, boolean content)
           
 

Methods in com.wm.app.tn.delivery with parameters of type GuaranteedJob
static void QueuingUtils.logDeliveryFailure(BizDocEnvelope doc, GuaranteedJob job, java.lang.String msg)
           
static void DeliveryUtils.notifyTaskFailure(GuaranteedJob job)
          For internal use only
 void JobMgr.startJob(GuaranteedJob job, boolean hold)
          Start a new job
static void QueuingUtils.updateStatus(GuaranteedJob job, boolean success)