SocketSendBufferBytes Property
General info
Label |
Socket Send Buffer |
Description |
Broker socket send buffer size. System default is used if 0 |
Data type |
Int32 |
Default value |
0 |
Min value |
0 |
Max value |
100000000 |
Type |
Regular |
Code |
6620 |
Symbolic name |
MODEL_PROP_SOCKETSENDBUFFERBYTES |
Lua access code |
inmation.model.properties.SocketSendBufferBytes |
- 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 |
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 SocketSendBufferBytes
property.
-- Read from the SocketSendBufferBytes
inmation.getvalue("<OBJECT FULL PATH>.KafkaProducerParameters.GlobalConfigurationProperties.AdvancedConfiguration.SocketSendBufferBytes")
-- Write to the SocketSendBufferBytes
inmation.setvalue("<OBJECT FULL PATH>.KafkaProducerParameters.GlobalConfigurationProperties.AdvancedConfiguration.SocketSendBufferBytes", 0)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "so", Password = "inmation" };
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the SocketSendBufferBytes
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.KafkaProducerParameters.GlobalConfigurationProperties.AdvancedConfiguration.SocketSendBufferBytes"));
// Write to the SocketSendBufferBytes
Result result = sli.WriteValue(sc, new WriteItem(0, "<OBJECT FULL PATH>.KafkaProducerParameters.GlobalConfigurationProperties.AdvancedConfiguration.SocketSendBufferBytes"));