Interface IRefresherFactory
-
- 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 IRefresherFactory
The refresher factory that createsIRefresherinstances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IRefreshercreateRefresher(Object... objects)CreatesIRefresherinstance.
-
-
-
Method Detail
-
createRefresher
IRefresher createRefresher(Object... objects)
CreatesIRefresherinstance.- Parameters:
objects- the objects, cannot benull.- Returns:
IRefresherinstance ornull.
-
-