/
githubmirror
/
the-algorithm
Обзор
Документация
Войти
/
githubmirror
/
the-algorithm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/java/com/twitter/search/earlybird/document/DeletedStatus.java
15 строк
398 B
twitter-team
Twitter Recommendation Algorithm
01 апр 2023, 01:36
01 апр 2023, 01:36
ef4c5eb
Код
Авторство
О чём код?
package com.twitter.search.earlybird.document; /** * DeletedStatus is a marker indicating that the specified tweet in the specified * timeslice has been deleted. */ public final class DeletedStatus { public final long timeSliceID; public final long statusID; public DeletedStatus(long timeSliceID, long statusID) { this.timeSliceID = timeSliceID; this.statusID = statusID; } }