nextRetryDelayInMilliseconds abstract method

int? nextRetryDelayInMilliseconds(
  1. RetryContext retryContext
)

Called after the transport loses the connection.

retryContext Details related to the retry event to help determine how long to wait for the next retry.

Returns the amount of time in milliseconds to wait before the next retry. null tells the client to stop retrying.

Implementation

int? nextRetryDelayInMilliseconds(RetryContext retryContext);