PollingRepeats Property
General info
Label |
Repeat |
Description |
The number of polling repetitions |
Data type |
Int32 |
Default value |
1 |
Type |
Regular |
Code |
6548 |
Symbolic name |
MODEL_PROP_POLLINGREPEATS |
Lua access code |
inmation.model.properties.PollingRepeats |
- Parent properties
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 |
Examples
Read from or write to the PollingRepeats
property.
-- Read from the PollingRepeats
inmation.getvalue("<OBJECT FULL PATH>.KafkaProducerParameters.PollingParameters.PollingRepeats")
-- Write to the PollingRepeats
inmation.setvalue("<OBJECT FULL PATH>.KafkaProducerParameters.PollingParameters.PollingRepeats", 1)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "so", Password = "inmation" };
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the PollingRepeats
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.KafkaProducerParameters.PollingParameters.PollingRepeats"));
// Write to the PollingRepeats
Result result = sli.WriteValue(sc, new WriteItem(1, "<OBJECT FULL PATH>.KafkaProducerParameters.PollingParameters.PollingRepeats"));