type

ConnSettings

const class ConnSettings : TypedDict

ConnSettings is the base class for connector library settings.

constructors

make

Constructor

fields

connTuningRef

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

maxThreads

Max threads for the connector's actor pool.

Slot Details

connTuningRef

@TypedTag
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

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

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.