Interface IORunnable

  • 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 interface IORunnable
    Like Runnable but throws IOException.
    Since:
    2.12.0
    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      default java.lang.Runnable asRunnable()
      Creates a Runnable for this instance that throws UncheckedIOException instead of IOException.
      void run()
      Like Runnable.run() but throws IOException.
    • Method Detail

      • asRunnable

        default java.lang.Runnable asRunnable()
        Creates a Runnable for this instance that throws UncheckedIOException instead of IOException.
        Returns:
        an UncheckedIOException Predicate.
      • run

        void run()
          throws java.io.IOException
        Like Runnable.run() but throws IOException.
        Throws:
        java.io.IOException - if an I/O error occurs.