Interface Operation<R>

Type Parameters:
R - the return type of the operation.
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 Operation<R>
Represents an operation that has been wrapped by WrapOperation or a method that has been wrapped by WrapMethod. This may either be the operation the user targeted originally, or a wrapped version of it, allowing for chaining.
  • Method Summary

    Modifier and Type
    Method
    Description
    call(Object... args)
     
  • Method Details