Interface FragileBiProcedure<Argument1,Argument2,E extends Exception>

All Known Subinterfaces:
BiProcedure<Argument1,Argument2>
All Known Implementing Classes:
DelegatingBiProcedure
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 FragileBiProcedure<Argument1,Argument2,E extends Exception>
Functional interface for a void function taking two arguments that can throw a checked Exception.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    process(Argument1 argument1, Argument2 argument2)
    Executes the procedure with the given arguments.
  • Method Details

    • process

      void process(Argument1 argument1, Argument2 argument2) throws E
      Executes the procedure with the given arguments.
      Throws:
      E extends Exception