接口 ReconnectStrategy

  • 所有已知实现类:
    FixedIntervalReconnectStrategy
    函数接口:
    这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。

    @FunctionalInterface
    public interface ReconnectStrategy
    A contract to determine the frequency of reconnect attempts after connection failure.
    从以下版本开始:
    4.0
    作者:
    Rossen Stoyanchev
    • 方法详细资料

      • getTimeToNextAttempt

        @Nullable
        Long getTimeToNextAttempt​(int attemptCount)
        Return the time to the next attempt to reconnect.
        参数:
        attemptCount - how many reconnect attempts have been made already
        返回:
        the amount of time in milliseconds, or null to stop