/
githubmirror
/
the-algorithm
Обзор
Документация
Войти
/
githubmirror
/
the-algorithm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/java/com/twitter/search/earlybird/partition/ISegmentWriter.java
24 строки
599 B
twitter-team
Twitter Recommendation Algorithm
01 апр 2023, 01:36
01 апр 2023, 01:36
ef4c5eb
Код
Авторство
О чём код?
package com.twitter.search.earlybird.partition; import java.io.IOException; import com.twitter.search.common.indexing.thriftjava.ThriftVersionedEvents; public interface ISegmentWriter { enum Result { SUCCESS, FAILURE_RETRYABLE, FAILURE_NOT_RETRYABLE, } /** * Indexes the given ThriftVersionedEvents instance (adds it to the segment associated with this * SegmentWriter instance). */ Result indexThriftVersionedEvents(ThriftVersionedEvents tve) throws IOException; /** * Returns the segment info for this segment writer. */ SegmentInfo getSegmentInfo(); }