Пример #1
0
 /*
  * Method to indicate a work start.
  */
 private void workStarted(final WorkItem workItem, final Work work) {
   WorkListener listener = workItems.get(workItem);
   if (listener != null) {
     workItem.setStatus(WorkEvent.WORK_STARTED);
     WorkEvent event = new WorkEvent(workItem);
     listener.workStarted(event);
   }
 }
Пример #2
0
 /*
  * Method to indicate a work completion.
  */
 private void workCompleted(
     final WorkItem workItem, final Work work, final WorkSchedulerException exception) {
   WorkListener listener = workItems.get(workItem);
   if (listener != null) {
     workItem.setStatus(WorkEvent.WORK_COMPLETED);
     workItem.setResult(work);
     workItem.setException(exception);
     WorkEvent event = new WorkEvent(workItem);
     listener.workCompleted(event);
     workItems.remove(workItem);
   }
 }
Пример #3
0
  /** Inform the listeners that a title has changed. */
  protected static void fireWorkProgressed(Progress job) {
    final WorkEvent ev = new WorkEvent(job);

    // We ought only to tell listeners about jobs that are in our
    // list of jobs so we need to fire before delete.
    for (WorkListener worker : listeners) {
      worker.workProgressed(ev);
    }

    // Do we need to remove the job? Note that the section above will
    // probably execute after this so we will be firing events for jobs
    // that are no longer in our list of jobs. ho hum.
    if (job.isFinished()) {
      log.debug("job finished: {}", job.getJobName());
      jobs.remove(job);
    }
  }
Пример #4
0
  /**
   * Schedules a unit of work asynchronously.
   *
   * @param work Work that needs to be scheduled.
   * @param workListener Work listener for callbacks.
   * @return Work Work item representing the asynchronous work
   */
  public WorkItem schedule(Work work, WorkListener workListener) throws IllegalArgumentException {

    WorkItem workItem = new WorkItem(UUID.randomUUID().toString(), work);
    if (workListener != null) {
      workItems.put(workItem, workListener);
    }
    workAccepted(workItem, work);
    if (scheduleWork(work, workItem)) {
      return workItem;
    } else {
      workItem.setStatus(WorkEvent.WORK_REJECTED);
      if (workListener != null) {
        workListener.workRejected(new WorkEvent(workItem));
      }
      throw new IllegalArgumentException("Unable to schedule work");
    }
  }
Пример #5
0
 private void processWorks() {
   mWorkListener.onProcessWork(this);
 }