setReconnectTimeInterval method

dynamic setReconnectTimeInterval(
  1. int seconds
)

Define the time interval used for the reconnect schedule after the Quick Reconnect phase.

See \link MigratoryDataClient.setQuickReconnectInitialDelay() \endlink to learn about the Quick Reconnect phase and the reconnect schedule for the policy defined by this method.

\param seconds a time interval expressed in seconds used for reconnect schedule; the default is \c 20

Implementation

setReconnectTimeInterval(int seconds) {
  clientImpl.setReconnectTimeInterval(seconds);
}