class

ConnSettings

const class ConnSettings : Settings

ConnSettings is the base class for connector library settings.

constructors make

Constructor

fields maxThreads

Max threads for the connector's actor pool

connTuningRef

Default tuning to use when connTuningRef is not explicitly configured on the connector or point record

connTuningRef @Setting
const Ref? : connTuningRef

Default tuning to use when connTuningRef is not explicitly configured on the connector or point record.

make new make(Dict d, |This| f)

Constructor

maxThreads @Setting { restart=true; meta="minVal: 1\nmaxVal: 5000" }
const Int : maxThreads

Max threads for the connector's actor pool. Adding more threads allows more connectors to work concurrently processing their messages. However more threads will incur additional memory usage. In general this value should be somewhere between 50% and 75% of the total number of connectors in the extension. A restart is required for a change to take effect.

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST