setAckTimeout method

OptionBuilder setAckTimeout(
  1. int timeout
)

The default timeout in milliseconds used when waiting for an acknowledgement (not to be mixed up with the already existing timeout option, which is used by the Manager during the connection)

Implementation

OptionBuilder setAckTimeout(int timeout) {
  _opts['ackTimeout'] = timeout;
  return this;
}