Interface Runner

All Known Implementing Classes:
Para, Seq
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 Runner
Runner is the interface that runs any procedure..
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    run()
    Runs the procedure that this instance represents.
  • Method Details

    • run

      void run() throws Err
      Runs the procedure that this instance represents. This method takes no argument and returns nothing. And this method throws an Err exception if this method failed.
      Throws:
      Err - If this method failed.