All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ucar.nc2.util.CancelTask Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 1998-2018 John Caron and University Corporation for Atmospheric Research/Unidata
 * See LICENSE for license information.
 */
package ucar.nc2.util;

/**
 * Allows long tasks to be cancelled. Used in potentially long method calls which the user may want the option to cancel.
 *
 * @author jcaron
 */

public interface CancelTask {

  /** Called routine should check often during the task and cancel the task if it returns true.
   * @return true if task was cancelled
   */
  boolean isCancel();

  /** Called routine got an error, so it sets a message for calling program to show to user.
   * @param msg message to show user
   */
  void setError(String msg);


  /** Called routine may optionally show a progress message for calling program to show to user.
   * @param msg message to show user
   * @param progress count of progress
   */
  void setProgress(String msg, int progress);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy