/
githubmirror
/
the-algorithm
Обзор
Документация
Войти
/
githubmirror
/
the-algorithm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/java/com/twitter/search/common/query/HitAttributeProvider.java
12 строк
334 B
twitter-team
Twitter Recommendation Algorithm
01 апр 2023, 01:36
01 апр 2023, 01:36
ef4c5eb
Код
Авторство
О чём код?
package com.twitter.search.common.query; import java.util.List; import java.util.Map; /** * The interface for objects that can provide hit attributes for a document. */ public interface HitAttributeProvider { /** Returns the hit attributes for the given document. */ Map<Integer, List<String>> getHitAttribution(int docId); }