/
githubmirror
/
the-algorithm
Обзор
Документация
Войти
/
githubmirror
/
the-algorithm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/java/com/twitter/search/earlybird/partition/EarlybirdStartup.java
17 строк
474 B
twitter-team
Twitter Recommendation Algorithm
01 апр 2023, 01:36
01 апр 2023, 01:36
ef4c5eb
Код
Авторство
О чём код?
package com.twitter.search.earlybird.partition; import java.io.Closeable; import com.twitter.search.earlybird.exception.EarlybirdStartupException; /** * Handles starting and indexing data for an Earlybird. */ @FunctionalInterface public interface EarlybirdStartup { /** * Handles indexing Tweets, Tweet Updates and user updates. Blocks until current, and forks a * thread to keep the index current. */ Closeable start() throws EarlybirdStartupException; }