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 createsIRefresher
instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IRefresher
createRefresher(Object... objects)
CreatesIRefresher
instance.
-
-
-
Method Detail
-
createRefresher
IRefresher createRefresher(Object... objects)
CreatesIRefresher
instance.- Parameters:
objects
- the objects, cannot benull
.- Returns:
IRefresher
instance ornull
.
-
-