Interface RestOperationsCallback<T>

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 RestOperationsCallback<T>
A callback for executing arbitrary operations on RestOperations.
Author:
Mark Paluch
  • Method Details

    • doWithRestOperations

      @Nullable T doWithRestOperations(RestOperations restOperations)
      Callback method.
      Parameters:
      restOperations - restOperations to use, must not be null.
      Returns:
      a result object or null if none.