ReconnectBackoffMaxMs Property

General info

Label

Reconnect Backoff Max

Description

The maximum time to wait before reconnecting to a broker after the connection has been closed.

Data type

Int32

Default value

10000

Min value

0

Max value

3600000

Type

Regular

Code

6628

Symbolic name

MODEL_PROP_RECONNECTBACKOFFMAXMS

Lua access code

syslib.model.properties.ReconnectBackoffMaxMs

Available since

1.54

Attributes

Name Tooltip
PROP_CONFIGURABLE The property is configurable and can be changed with DataStudio and the various inmation APIs.
PROP_VISIBLE The property is visible in DataStudio and can be read by the inmation APIs.
PROP_HAS_DEFAULT The property has a default value as standard.
PROP_UNIT The property has an engineering unit.
PROP_HAS_LOLIMIT The property has a low limit.
PROP_HAS_HILIMIT The property has a high limit.

Examples

Read from or write to the ReconnectBackoffMaxMs property.

  • Lua

  • C#

-- Read from the ReconnectBackoffMaxMs
syslib.getvalue("<OBJECT FULL PATH>.KafkaProducerProperties.ReconnectBackoffMaxMs")

-- Write to the ReconnectBackoffMaxMs
syslib.setvalue("<OBJECT FULL PATH>.KafkaProducerProperties.ReconnectBackoffMaxMs", 10000)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "<username>", Password = "<password>" };
StatelessInterface sli = new StatelessInterface(tcpcfg);

// Read from the ReconnectBackoffMaxMs
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.KafkaProducerProperties.ReconnectBackoffMaxMs"));
// Write to the ReconnectBackoffMaxMs
Result result = sli.WriteValue(sc, new WriteItem(10000, "<OBJECT FULL PATH>.KafkaProducerProperties.ReconnectBackoffMaxMs"));