/
githubmirror
/
the-algorithm
Обзор
Документация
Войти
/
githubmirror
/
the-algorithm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/java/com/twitter/search/earlybird/partition/FlowControlException.java
16 строк
385 B
twitter-team
Twitter Recommendation Algorithm
01 апр 2023, 01:36
01 апр 2023, 01:36
ef4c5eb
Код
Авторство
О чём код?
package com.twitter.search.earlybird.partition; /** * Exception used to cause a ScheduledExecutorService to stop executing. Used when the * success condition of the class has been achieved. */ public class FlowControlException extends RuntimeException { public FlowControlException() { super(); } public FlowControlException(String message) { super(message); } }