Interface ProgressMonitors.SimpleComputableSubTask<T,E1 extends Throwable,E2 extends Throwable>

Type Parameters:
T - Type of value computed.
E1 - Type of Exception thrown.
E2 - Type of Exception thrown.
Enclosing class:
ProgressMonitors
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface ProgressMonitors.SimpleComputableSubTask<T,E1 extends Throwable,E2 extends Throwable>
Block of code computing a value in a subtask that does not call other methods using IProgressMonitor.
  • Method Summary

    Modifier and Type
    Method
    Description
    Computes a value without calling other methods using IProgressMonitor.
  • Method Details

    • compute

      T compute() throws E1, E2
      Computes a value without calling other methods using IProgressMonitor.
      Returns:
      Computed value.
      Throws:
      E1 - If an error occurs.
      E2 - If an error occurs.