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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description IRefreshercreateRefresher(Object... objects)CreatesIRefresherinstance.
 
- 
- 
- 
Method Detail- 
createRefresherIRefresher createRefresher(Object... objects) CreatesIRefresherinstance.- Parameters:
- objects- the objects, cannot be- null.
- Returns:
- IRefresherinstance or- null.
 
 
- 
 
-