Interface BeanFetcher<BeanType>

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 BeanFetcher<BeanType>
This interface can be implemented to use with the GenericQueryManager.restore(BeanFetcher) method.
Since:
1.0
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method will be called with each bean instance that was retrieved with the restore query.
  • Method Details

    • gotBeanInstance

      void gotBeanInstance(BeanType instance)
      This method will be called with each bean instance that was retrieved with the restore query.
      Parameters:
      instance - the bean instance that was retrieved
      Since:
      1.0