Interface UnixFSUtils.IOOperation<T>

Type Parameters:
T - the result type
Enclosing class:
UnixFSUtils
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 UnixFSUtils.IOOperation<T>
Defines an operation which may throw an instance of IOException
  • Method Summary

    Modifier and Type
    Method
    Description
    Performs the operation.
  • Method Details

    • perform

      T perform() throws IOException
      Performs the operation.
      Returns:
      the calculated value of the operation.
      Throws:
      IOException - for any reason.