Interface RecommenderSupplier<U>
- Type Parameters:
U
- type of the users.
- 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 RecommenderSupplier<U>
Interface for obtaining a configured contact recommendation algorithm.
-
Method Summary
Modifier and Type Method Description UserFastRankingRecommender<U>
get(FastGraph<U> graph)
Given a network, obtains a contact recommendation algorithm.
-
Method Details
-
get
Given a network, obtains a contact recommendation algorithm.- Parameters:
graph
- the network.- Returns:
- the configured contact recommendation algorithm.
-