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.
This interface can be implemented to use with the
GenericQueryManager.restore(BeanFetcher)
method.- Since:
- 1.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
gotBeanInstance
(BeanType instance) This method will be called with each bean instance that was retrieved with the restore query.
-
Method Details
-
gotBeanInstance
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
-